Skip to content

Commit

Permalink
fix: default inspector hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Mar 13, 2020
1 parent 265dbe0 commit 533c658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const App: React.FC = () => {
const [notification, setNotification] = useState<ISnackBarNotification | undefined>();
const [UISchema, setUISchemaBySection]: [IUISchema, any] = UISchemaStore();
const [editor, setEditor] = useState();
const [horizontalSplit, privateSetHorizontalSplit] = useState(true);
const [horizontalSplit, privateSetHorizontalSplit] = useState(false);
const setHorizontalSplit = (val: boolean) => {
if (editor) {
setTimeout(() => {
Expand Down

0 comments on commit 533c658

Please sign in to comment.