0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

🚨 fix lint

This commit is contained in:
Simeng Li 2021-08-02 21:41:14 +08:00
parent aa9677ea7a
commit 816375e163
3 changed files with 28 additions and 21 deletions

View file

@ -19,16 +19,19 @@ const App: FC = () => {
const [pageState, setPageState] = useState<PageState>('idle');
const isLoading = pageState === 'loading';
const signUp: FormEventHandler = useCallback(async (event) => {
event.preventDefault();
setPageState('loading');
try {
window.location.href = (await register(username, password)).redirectTo;
} catch {
// TODO: Show specific error after merge into monorepo
setPageState('error');
}
}, []);
const signUp: FormEventHandler = useCallback(
async (event) => {
event.preventDefault();
setPageState('loading');
try {
window.location.href = (await register(username, password)).redirectTo;
} catch {
// TODO: Show specific error after merge into monorepo
setPageState('error');
}
},
[username, password]
);
return (
<div className={classNames(styles.wrapper)}>

View file

@ -20,16 +20,19 @@ const Home: FC = () => {
const [pageState, setPageState] = useState<PageState>('idle');
const isLoading = pageState === 'loading';
const signIn: FormEventHandler = useCallback(async (event) => {
event.preventDefault();
setPageState('loading');
try {
window.location.href = (await signInBasic(username, password)).redirectTo;
} catch {
// TODO: Show specific error after merge into monorepo
setPageState('error');
}
}, []);
const signIn: FormEventHandler = useCallback(
async (event) => {
event.preventDefault();
setPageState('loading');
try {
window.location.href = (await signInBasic(username, password)).redirectTo;
} catch {
// TODO: Show specific error after merge into monorepo
setPageState('error');
}
},
[username, password]
);
return (
<div className={classNames(styles.wrapper)}>

View file

@ -8,6 +8,7 @@
}
},
"include": [
"src"
"src",
"App.test.tsx"
]
}