Skip to content

Commit

Permalink
feat: make delete backups checkbox off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonella Sgarlatta committed Jun 8, 2021
1 parent 6f2ea2a commit c38b1f0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/assets/javascripts/components/ConfirmSignoutModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ const ConfirmSignoutContainer = observer((props: Props) => {
});

const ConfirmSignoutModal = observer(({ application, appState }: Props) => {
const [deleteLocalBackups, setDeleteLocalBackups] = useState(
application.hasAccount()
);
const [deleteLocalBackups, setDeleteLocalBackups] = useState(false);

const cancelRef = useRef<HTMLButtonElement>();
function close() {
Expand Down

0 comments on commit c38b1f0

Please sign in to comment.