1
0
Fork 0

fix(fs.dev): Remove debug output

This commit is contained in:
Joost De Cock 2021-12-30 18:54:42 +01:00
parent 4433720075
commit 1ddba2b3b2

View file

@ -68,7 +68,7 @@ const AppWrapper= props => {
<Wrapper>
{props.noLayout
? props.children
: <Layout {...childProps}><p className={`theme-${props.app.theme}`} data-theme={props.app.theme}>{props.app.theme}</p>{props.children}</Layout>
: <Layout {...childProps}>{props.children}</Layout>
}
</Wrapper>
)