From 8b91b4a632ed61ffe91ffaa70b0a724ac9fe75ae Mon Sep 17 00:00:00 2001
From: Paul <paulmakles@gmail.com>
Date: Thu, 24 Jun 2021 20:53:12 +0100
Subject: [PATCH] Fix: Onboarding would not appear due to content pushing it
 out of the way.

---
 src/context/intermediate/Intermediate.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/context/intermediate/Intermediate.tsx b/src/context/intermediate/Intermediate.tsx
index 3c4f66a..12f0e44 100644
--- a/src/context/intermediate/Intermediate.tsx
+++ b/src/context/intermediate/Intermediate.tsx
@@ -108,7 +108,7 @@ export default function Intermediate(props: Props) {
     return (
         <IntermediateContext.Provider value={value}>
             <IntermediateActionsContext.Provider value={actions}>
-                {props.children}
+                { screen.id !== 'onboarding' && props.children }
                 <Modals
                     {...value}
                     {...actions}
-- 
GitLab