-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ (website/auth/challenge) session がない場合は再ログインを要求するように修正
- Loading branch information
Showing
6 changed files
with
54 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
apps/website/src/module/introduction/hero-section/component/relate-result-dialog/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { RelateResultDialog } from './relate-result-dialog.presenter'; |
19 changes: 19 additions & 0 deletions
19
...troduction/hero-section/component/relate-result-dialog/relate-result-dialog.presenter.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
'use client'; | ||
|
||
import { Dialog, DialogContent } from '@lockerai/core/component/dialog'; | ||
import type { ComponentPropsWithoutRef, ReactNode } from 'react'; | ||
|
||
type RelateResultDialogProps = Omit<ComponentPropsWithoutRef<typeof Dialog>, 'children' | 'className'>; | ||
|
||
export const RelateResultDialog = ({ defaultOpen, ...props }: RelateResultDialogProps): ReactNode => ( | ||
<Dialog {...props}> | ||
<DialogContent> | ||
<p className="mt-8 flex items-center gap-3 text-center text-4xl font-bold text-sage-12">Linking fingerprint successful!</p> | ||
<p className="text-xl text-sage-11"> | ||
Now your fingerprint is linked to your account. | ||
<br /> | ||
Please scan your fingerprint again to unlock the door. | ||
</p> | ||
</DialogContent> | ||
</Dialog> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters