Skip to content

Commit

Permalink
fix: Settings defaults to closed.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkobits committed Sep 4, 2020
1 parent e83ecd4 commit 3ffc996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const onClickAndHold = (threshold: number, cb: GenericFunction) => (e: React.Mou
};

const App: React.FunctionComponent = () => {
const [showSettings, setShowSettings] = React.useState(true);
const [showSettings, setShowSettings] = React.useState(false);

const handleClickAndHold = React.useCallback(() => {
setShowSettings(true);
Expand Down

0 comments on commit 3ffc996

Please sign in to comment.