Fix mock mode transition to regular mode on login (#361)

This commit is contained in:
Charles Bochet
2023-06-22 14:09:51 -07:00
committed by GitHub
parent c4ad0171b0
commit ba1dd07e53
8 changed files with 85 additions and 60 deletions

View File

@ -0,0 +1,6 @@
import { atom } from 'recoil';
export const isMockModeState = atom({
key: 'isMockModeState',
default: false,
});