@@ -8,21 +8,13 @@ import { useCallback, useEffect, useState } from "react";
8
8
import Conversation from "@/components/widget/Conversation" ;
9
9
import { eventBus , messageQueue } from "@/components/widget/eventBus" ;
10
10
import Header from "@/components/widget/Header" ;
11
- import HelpingHand from "@/components/widget/HelpingHand" ;
12
11
import { useReadPageTool } from "@/components/widget/hooks/useReadPageTool" ;
13
12
import PreviousConversations from "@/components/widget/PreviousConversations" ;
14
13
import { useWidgetView } from "@/components/widget/useWidgetView" ;
15
14
import { useScreenshotStore } from "@/components/widget/widgetState" ;
16
15
import { buildThemeCss , type MailboxTheme } from "@/lib/themes" ;
17
- import {
18
- MESSAGE_TYPE ,
19
- minimizeWidget ,
20
- RESUME_GUIDE ,
21
- sendConversationUpdate ,
22
- sendReadyMessage ,
23
- } from "@/lib/widget/messages" ;
16
+ import { MESSAGE_TYPE , RESUME_GUIDE , sendConversationUpdate , sendReadyMessage } from "@/lib/widget/messages" ;
24
17
import { HelperWidgetConfig } from "@/sdk/types" ;
25
- import { GuideInstructions } from "@/types/guide" ;
26
18
27
19
type DecodedPayload = {
28
20
isWhitelabel ?: boolean ;
@@ -193,16 +185,6 @@ export default function Page() {
193
185
</ LazyMotion >
194
186
</ div >
195
187
</ div >
196
- { /* {isGuidingUser && guideInstructions && (
197
- <HelpingHand
198
- instructions={guideInstructions.instructions}
199
- token={token}
200
- conversationSlug={selectedConversationSlug}
201
- initialSteps={guideInstructions.steps}
202
- resumed={guideInstructions.resumed}
203
- existingSessionId={resumedGuideSessionId}
204
- />
205
- )} */ }
206
188
</ QueryClientProvider >
207
189
) ;
208
190
}
0 commit comments