Skip to content

Commit 0b92118

Browse files
committed
Fix className interpolation in Card component
1 parent 1790bce commit 0b92118

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/Card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Card({
2323

2424
return (
2525
<div
26-
className={`flex flex-col gap-8 col-span-$(cols) bg-white p-8 justify-center ${alignClass}`}
26+
className={`flex flex-col gap-8 bg-white p-8 justify-center ${alignClass}`}
2727
style={{
2828
gridColumnEnd: `span ${cols}`,
2929
gridRowEnd: `span ${rows}`,

0 commit comments

Comments
 (0)