From 8f1c6475b2ed6f76f2c7346253a59a237914b7e3 Mon Sep 17 00:00:00 2001 From: huong-li-nguyen <huong_li_nguyen@mckinsey.com> Date: Tue, 7 Jan 2025 14:01:09 +0100 Subject: [PATCH] Update app.py --- vizro-core/examples/scratch_dev/app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vizro-core/examples/scratch_dev/app.py b/vizro-core/examples/scratch_dev/app.py index a6123fa39..002e0fab5 100644 --- a/vizro-core/examples/scratch_dev/app.py +++ b/vizro-core/examples/scratch_dev/app.py @@ -77,7 +77,7 @@ className="mb-5", ) -toggle = dbc.Switch(id="switch", value=True, persistence=True, persistence_type="session") +toggle = dbc.Switch(id="switch", value=False, persistence=True, persistence_type="session") theme_colors = [ "primary", @@ -102,7 +102,6 @@ app.layout = html.Div( children=[header, dbc.Row([dbc.Col(controls, width=4), dbc.Col([tabs, colors], width=8)])], - **{"data-bs-theme": "dark"}, )