Skip to content

Commit

Permalink
Fix invalid typescript interfaces (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
abichinger authored May 22, 2024
1 parent 091751a commit e36160b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/typechat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function generateSchema(
): string {
const properties = batch
.map((tString: TString) => {
return ` ${tString.key}: string;`;
return ` '${tString.key}': string;`;
})
.join("\n");

Expand Down

0 comments on commit e36160b

Please sign in to comment.