From 8e20d90081e009fb00a8bdb5d3ef285adbc90c80 Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Mon, 4 Mar 2024 18:03:29 +0100 Subject: [PATCH] :ambulance: Fix invalid workspace plan check for support bubble --- apps/builder/src/components/SupportBubble.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/builder/src/components/SupportBubble.tsx b/apps/builder/src/components/SupportBubble.tsx index e48b4c9fe..b9b6b84fe 100644 --- a/apps/builder/src/components/SupportBubble.tsx +++ b/apps/builder/src/components/SupportBubble.tsx @@ -19,7 +19,7 @@ export const SupportBubble = (props: Omit) => { 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 (