Fix build errors

This commit is contained in:
akhisud3195 2025-05-09 20:00:50 +05:30
parent 5bc1dc8b37
commit 9c712250fb
2 changed files with 5 additions and 1 deletions

View file

@ -195,6 +195,8 @@ const App = forwardRef<{ handleCopyChat: () => void; handleUserMessage: (message
);
});
App.displayName = 'App';
export const Copilot = forwardRef<{ handleUserMessage: (message: string) => void }, {
projectId: string;
workflow: z.infer<typeof Workflow>;
@ -301,3 +303,5 @@ export const Copilot = forwardRef<{ handleUserMessage: (message: string) => void
);
});
Copilot.displayName = 'Copilot';