Skip to content

Commit

Permalink
design: modal variant
Browse files Browse the repository at this point in the history
  • Loading branch information
nim-od committed Aug 19, 2024
1 parent 66d1a32 commit b9c6893
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function TeamSelectModal({ openTrigger, ...props }: TeamSelectMod
const { user } = useAuth();

return (
<Modal variants={user?.type} openTrigger={openTrigger} {...props}>
<Modal variants={user?.type ?? 'default'} openTrigger={openTrigger} {...props}>
<Suspense fallback={<PendingStep>유형 검사 리스트 불러오는 중 ...</PendingStep>}>
<TeamSelectModalContent initialStep={user?.type ? 'already-done' : 'quiz'} />
</Suspense>
Expand Down

0 comments on commit b9c6893

Please sign in to comment.