2
0

🐛 (viewer) Remove default white background when it is set to none

Closes #469
This commit is contained in:
Baptiste Arnaud
2023-04-20 14:59:34 +02:00
parent 3b69b18601
commit bda34e3827

View File

@@ -31,7 +31,9 @@ export const TypebotPageV3 = ({ url, typebot }: TypebotPageProps) => {
backgroundColor:
background?.type === BackgroundType.COLOR
? background?.content
: 'white',
: background?.type === BackgroundType.NONE
? undefined
: '#fff',
}}
>
{typebot && (