diff --git a/src/app.tsx b/src/app.tsx index 236a618..27df419 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -70,7 +70,7 @@ export class App extends React.Component { const generation = !isNaN(parsedGen) ? parsedGen : undefined; const hash = getParam('file'); const handleCors = getParam('handleCors') !== 'false'; // True by default. - const showSidePanel = getParam('sidePanel') === 'true'; // False by default. + const showSidePanel = getParam('sidePanel') !== 'false'; // True by default. if (!url && !hash) { this.props.history.replace({pathname: '/'});