Skip to content

Commit

Permalink
chore: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seongminn committed Nov 28, 2023
1 parent a306aea commit 90496b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function Home() {
<button
onClick={() => setInParams(QUERY_PARAMS.status, 'finished')}
className={$(
'text-gary-5 rounded-xl px-5 py-3',
'rounded-xl px-5 py-3 text-gray-5',
params.get(QUERY_PARAMS.status) === 'finished' &&
'bg-primary text-white',
)}
Expand All @@ -48,7 +48,7 @@ export default function Home() {
<button
onClick={() => setInParams(QUERY_PARAMS.status, 'playing')}
className={$(
'text-gary-5 rounded-xl px-5 py-3',
'rounded-xl px-5 py-3 text-gray-5',
(params.get(QUERY_PARAMS.status) === 'playing' || null) &&
'bg-primary text-white',
)}
Expand All @@ -58,7 +58,7 @@ export default function Home() {
<button
onClick={() => setInParams(QUERY_PARAMS.status, 'scheduled')}
className={$(
'text-gary-5 rounded-xl px-5 py-3',
'rounded-xl px-5 py-3 text-gray-5',
params.get(QUERY_PARAMS.status) === 'scheduled' &&
'bg-primary text-white',
)}
Expand Down

0 comments on commit 90496b4

Please sign in to comment.