chore: improving discord login callback message

This commit is contained in:
wonderlandpark 2021-03-25 10:31:24 +09:00
parent adf0133095
commit e7283da4a8
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ const Loader = ({ text, visible = true }: LoaderProps): JSX.Element => {
}
interface LoaderProps {
text: string
text: string | JSX.Element
visible?: boolean
}

View File

@ -35,7 +35,7 @@ const DiscordCallback:NextPage<DiscordCallbackProps> = ({ data }) => {
}
return <>
<Loader text='로그인중입니다. 잠시만 기다려주세요.' />
<Loader text={<>. .<br /> .</>} />
{
redirect ? redirectWhere() : ''
}