Skip to content
Snippets Groups Projects
Commit 8b91b4a6 authored by insert's avatar insert
Browse files

Fix: Onboarding would not appear due to content pushing it out of the way.

parent 557ed030
No related merge requests found
...@@ -108,7 +108,7 @@ export default function Intermediate(props: Props) { ...@@ -108,7 +108,7 @@ export default function Intermediate(props: Props) {
return ( return (
<IntermediateContext.Provider value={value}> <IntermediateContext.Provider value={value}>
<IntermediateActionsContext.Provider value={actions}> <IntermediateActionsContext.Provider value={actions}>
{props.children} { screen.id !== 'onboarding' && props.children }
<Modals <Modals
{...value} {...value}
{...actions} {...actions}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment