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:
parent
aa9677ea7a
commit
816375e163
3 changed files with 28 additions and 21 deletions
|
@ -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)}>
|
||||
|
|
|
@ -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)}>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
}
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
"src",
|
||||
"App.test.tsx"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue