Fix: Load Theme early for onboarding.

This commit is contained in:
Paul
2021-06-24 21:07:07 +01:00
parent 8b91b4a632
commit e03c2f88af
4 changed files with 22 additions and 12 deletions

View File

@@ -13,17 +13,19 @@ export default function Context({ children }: { children: Children }) {
return (
<Router>
<State>
<Settings>
<Locale>
<Intermediate>
<Client>
<Voice>
<Theme>{children}</Theme>
</Voice>
</Client>
</Intermediate>
</Locale>
</Settings>
<Theme>
<Settings>
<Locale>
<Intermediate>
<Client>
<Voice>
{children}
</Voice>
</Client>
</Intermediate>
</Locale>
</Settings>
</Theme>
</State>
</Router>
);