Skip to content

Commit ee36dcf

Browse files
fix lint
1 parent 0778b39 commit ee36dcf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

templates/types/streaming/express/src/controllers/chat-upload.controller.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export const chatUpload = async (req: Request, res: Response) => {
1616
const index = await getDataSource(params);
1717
if (!index) {
1818
return res.status(500).json({
19-
error: "StorageContext is empty - call 'npm run generate' to generate the storage first",
19+
error:
20+
"StorageContext is empty - call 'npm run generate' to generate the storage first",
2021
});
2122
}
2223
return res.status(200).json(await uploadDocument(index, filename, base64));

0 commit comments

Comments
 (0)