Skip to content

Commit

Permalink
Fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
krishaamer committed Jul 29, 2024
1 parent f85b7c8 commit 92af034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/shared/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Header() {
<div className="flex space-x-4">
<div>
{session?.data?.user?.name ? (
<p>`歡迎 ${session?.data?.user?.name}`</p>
<p>歡迎 {session?.data?.user?.name}</p>
) : (
<SignIn />
)}
Expand Down

0 comments on commit 92af034

Please sign in to comment.