Skip to content

Commit 8528b1f

Browse files
committed
chore: comment code to test handoff in local
1 parent 5ebe8e1 commit 8528b1f

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

packages/botonic-core/src/handoff.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,11 @@ async function _humanHandOff(
267267
if (subscribeHelpdeskEvents.length > 0) {
268268
params.subscribe_helpdesk_events = subscribeHelpdeskEvents
269269
}
270-
if (!session.is_test_integration) {
271-
session._botonic_action = `${BotonicAction.CreateCase}:${JSON.stringify(params)}`
272-
} else {
273-
session._botonic_action = `${BotonicAction.CreateTestCase}:${params.on_finish || ''}`
274-
}
270+
// if (!session.is_test_integration) {
271+
session._botonic_action = `${BotonicAction.CreateCase}:${JSON.stringify(params)}`
272+
// } else {
273+
// session._botonic_action = `${BotonicAction.CreateTestCase}:${params.on_finish || ''}`
274+
// }
275275
}
276276

277277
export async function storeCaseRating(

packages/botonic-plugin-flow-builder/src/content-fields/flow-handoff.tsx

+12-12
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ export class FlowHandoff extends ContentFieldsBase {
7171
handOffBuilder.withExtraData({
7272
language,
7373
})
74-
this.isTestIntegration = request.session.is_test_integration
74+
// this.isTestIntegration = request.session.is_test_integration
7575
await handOffBuilder.handOff()
7676
}
7777
}
7878

7979
toBotonic(id: string, request: ActionRequest): JSX.Element {
80-
if (this.isTestIntegration) {
81-
return (
82-
<Multichannel key={this.id}>
83-
<Text>
84-
_**HANDOFF IN PREVIEW**_ {'\n'}ℹ️ _At this point, a new case would
85-
be created in {this.queue?.name} queue. To continue with the
86-
preview, a case resolved scenario will be simulated._
87-
</Text>
88-
</Multichannel>
89-
)
90-
}
80+
// if (this.isTestIntegration) {
81+
// return (
82+
// <Multichannel key={this.id}>
83+
// <Text>
84+
// _**HANDOFF IN PREVIEW**_ {'\n'}ℹ️ _At this point, a new case would
85+
// be created in {this.queue?.name} queue. To continue with the
86+
// preview, a case resolved scenario will be simulated._
87+
// </Text>
88+
// </Multichannel>
89+
// )
90+
// }
9191

9292
return isDev(request.session) || isWebchat(request.session) ? (
9393
<WebchatSettings key={id} enableUserInput={true} />

0 commit comments

Comments
 (0)