Skip to content

Commit

Permalink
fix: fixed build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mishramonalisha76 committed Oct 11, 2024
1 parent 44fae1a commit 7aed3b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/uiweb/src/lib/context/chatContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface IChatDataContextValues {
isPushChatStreamConnected: boolean;
setIsPushChatStreamConnected: React.Dispatch<React.SetStateAction<boolean>>;
toast: any;
infuraProjectId: string;
infuraProjectId: string | null;
uiConfig: {
suppressToast?: boolean;
};
Expand Down Expand Up @@ -89,6 +89,7 @@ export const initialChatDataContextValues: IChatDataContextValues = {
uiConfig: {
suppressToast: false,
},
infuraProjectId: null,
chatStream: {},
chatAcceptStream: {},
chatRejectStream: {},
Expand Down

0 comments on commit 7aed3b0

Please sign in to comment.