🐛 (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:
|
||||
background?.type === BackgroundType.COLOR
|
||||
? background?.content
|
||||
: 'white',
|
||||
: background?.type === BackgroundType.NONE
|
||||
? undefined
|
||||
: '#fff',
|
||||
}}
|
||||
>
|
||||
{typebot && (
|
||||
|
||||
Reference in New Issue
Block a user