From 33708391e7a9430847155be197ddd69d594a9b09 Mon Sep 17 00:00:00 2001 From: Antony Milne <49395058+antonymilne@users.noreply.github.com> Date: Mon, 20 Jan 2025 14:46:35 +0000 Subject: [PATCH] Fix merge --- vizro-core/src/vizro/models/_dashboard.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/vizro-core/src/vizro/models/_dashboard.py b/vizro-core/src/vizro/models/_dashboard.py index f48843739..218594835 100644 --- a/vizro-core/src/vizro/models/_dashboard.py +++ b/vizro-core/src/vizro/models/_dashboard.py @@ -172,12 +172,7 @@ def build(self): dash.page_container, ], ) - return dmc.MantineProvider( - layout, - # Use the `theme` to style all Mantine components with a Vizro theme. For more info see https://www.dash-mantine-components.com/components/mantineprovider - theme={"primaryColor": "gray"}, - ) - + # children=[layout] as a list rather than children=layout, so that app.dash.layout.children.append works to # easily add things to the Dash layout. In future we might have a neater function for patching components into # the Dash layout in which case this could change.