Skip to content

Commit

Permalink
Merge pull request #362 from open-rpc/fix/default-inspector-hidden
Browse files Browse the repository at this point in the history
fix: default inspector hidden
  • Loading branch information
shanejonas authored Mar 13, 2020
2 parents 265dbe0 + 533c658 commit b5760d8
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 b5760d8

Please sign in to comment.