chore: fix typos

This commit is contained in:
Tristan Yang
2023-01-17 09:34:11 +08:00
parent 79e67c3c3f
commit 11a5b574dd
8 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ const GithubCallback: FC<Props> = ({ code, from = "webapp" }) => {
if (error) return <span>Something Error</span>;
return <section className='flex flex-col gap-3 justify-center items-center'>
{isSuccess && from == 'widget' && <h1>Please close this window and return widget window</h1>}
<span className='text-3xl text-green-600 font-bold'>{isLoading ? "Github Logging in..." : "Github Login Success!"}</span>
<span className='text-3xl text-green-600 font-bold'>{isLoading ? "GitHub Logging in..." : "GitHub Login Success!"}</span>
</section>;
};