Skip to content

Commit ec0b581

Browse files
committed
migrate StakingGuides from Chakra UI to shadcn
1 parent 7ba2d7c commit ec0b581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Staking/StakingGuides.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useTranslation } from "next-i18next"
2-
import { Stack } from "@chakra-ui/react"
2+
import { Stack } from "@/components/ui/flex"
33

44
import CardList, { type CardListItem } from "@/components/CardList"
55

@@ -29,7 +29,7 @@ const StakingGuides = () => {
2929
},
3030
]
3131

32-
return <Stack as={CardList} direction="column" gap={4} items={guides} />
32+
return <CardList className="flex flex-col gap-4" items={guides} />
3333
}
3434

3535
export default StakingGuides

0 commit comments

Comments
 (0)