Skip to content

Commit

Permalink
fix: properly display start enterprise trial (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
EFF committed Jan 24, 2022
1 parent 3f1b04e commit 900b067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/studio-be/src/studio/studio-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export class StudioRouter extends CustomRouter {
window.WORKSPACE_ID = "${workspaceId}";
window.IS_BOT_MOUNTED = ${this.botService.isBotMounted(botId)};
window.SEGMENT_WRITE_KEY = "${segmentWriteKey}";
window.IS_PRO_ENABLED = "${process.IS_PRO_ENABLED}";
window.IS_PRO_ENABLED = ${process.IS_PRO_ENABLED};
})(typeof window != 'undefined' ? window : {})
`

Expand Down

0 comments on commit 900b067

Please sign in to comment.