From 7aed3b00262373a28abd248968ba271edd11069d Mon Sep 17 00:00:00 2001
From: Monalisha Mishra <mishramonalisha76@gmail.com>
Date: Fri, 11 Oct 2024 18:23:13 +0530
Subject: [PATCH] fix: fixed build issue

---
 packages/uiweb/src/lib/context/chatContext.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/packages/uiweb/src/lib/context/chatContext.ts b/packages/uiweb/src/lib/context/chatContext.ts
index c63c5847d..8e28d117d 100644
--- a/packages/uiweb/src/lib/context/chatContext.ts
+++ b/packages/uiweb/src/lib/context/chatContext.ts
@@ -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;
   };
@@ -89,6 +89,7 @@ export const initialChatDataContextValues: IChatDataContextValues = {
   uiConfig: {
     suppressToast: false,
   },
+  infuraProjectId: null,
   chatStream: {},
   chatAcceptStream: {},
   chatRejectStream: {},