🐛 (viewer) Remove default white background when it is set to none
Closes #469
This commit is contained in:
@@ -31,7 +31,9 @@ export const TypebotPageV3 = ({ url, typebot }: TypebotPageProps) => {
|
|||||||
backgroundColor:
|
backgroundColor:
|
||||||
background?.type === BackgroundType.COLOR
|
background?.type === BackgroundType.COLOR
|
||||||
? background?.content
|
? background?.content
|
||||||
: 'white',
|
: background?.type === BackgroundType.NONE
|
||||||
|
? undefined
|
||||||
|
: '#fff',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{typebot && (
|
{typebot && (
|
||||||
|
|||||||
Reference in New Issue
Block a user