2
0

🚸 (radar) Don't show claim bot if workspace is no…

This commit is contained in:
Baptiste Arnaud
2024-03-20 17:06:11 +01:00
parent dbc875448b
commit c72052cb9d

View File

@ -11,7 +11,7 @@ export const SuspectedTypebotBanner = ({ typebotId }: Props) => {
const { user } = useUser()
const { workspace } = useWorkspace()
if (!user?.email) return null
if (!user?.email || !workspace) return null
return (
<HStack