Skip to content

Commit c2d80c8

Browse files
committed
style: reformat codebase
1 parent 34a6823 commit c2d80c8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

app/login/do-you-know.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default async function DoYouKnow() {
1515
</p>,
1616
<p key="do-you-knows-wrong-no-penalty">
1717
寫錯不會扣點數,錯誤次數也不會列入排名<br />可以盡量在平台上練習!
18-
</p>
18+
</p>,
1919
];
2020

2121
const randomKnow = knowsList[Math.floor(Math.random() * knowsList.length)];

app/login/page.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export default async function LoginPage({ searchParams }: LoginPageProps) {
2929
{/* Left Information Panel */}
3030
<div
3131
className={`
32-
flex w-full flex-col justify-between px-8 py-6
33-
backdrop-blur-md
32+
flex w-full flex-col justify-between px-8 py-6 backdrop-blur-md
3433
lg:w-[40vw] lg:px-14 lg:py-8
3534
`}
3635
>

components/app-navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function NavItem({ icon, label, active = false }: NavItemProps) {
2020
variant="ghost"
2121
className={cn(
2222
"flex h-auto items-center gap-3 rounded px-3 py-2 text-sm",
23-
active && "bg-primary text-primary-foreground"
23+
active && "bg-primary text-primary-foreground",
2424
)}
2525
>
2626
<div className="h-4 w-4 flex-shrink-0">{icon}</div>

0 commit comments

Comments
 (0)