🚑 Fix invalid workspace plan check for support bubble
This commit is contained in:
@ -19,7 +19,7 @@ export const SupportBubble = (props: Omit<BubbleProps, 'typebot'>) => {
|
||||
setLastViewedTypebotId(typebot?.id)
|
||||
}, [lastViewedTypebotId, typebot?.id])
|
||||
|
||||
if (workspace?.plan && workspace.plan !== Plan.FREE) return null
|
||||
if (!workspace?.plan || workspace.plan === Plan.FREE) return null
|
||||
|
||||
return (
|
||||
<Bubble
|
||||
|
Reference in New Issue
Block a user