Improve auth and seeds (#352)
* Improve seeds * Autofill password on local environment * Fix PR --------- Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import { atom } from 'recoil';
|
||||
|
||||
export const authFlowUserEmailState = atom<string>({
|
||||
export const authFlowUserEmailState = atom({
|
||||
key: 'authFlowUserEmailState',
|
||||
default: '',
|
||||
default: process.env.NODE_ENV === 'development' ? 'tim@apple.dev' : '',
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user