We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba2d7c commit ec0b581Copy full SHA for ec0b581
src/components/Staking/StakingGuides.tsx
@@ -1,5 +1,5 @@
1
import { useTranslation } from "next-i18next"
2
-import { Stack } from "@chakra-ui/react"
+import { Stack } from "@/components/ui/flex"
3
4
import CardList, { type CardListItem } from "@/components/CardList"
5
@@ -29,7 +29,7 @@ const StakingGuides = () => {
29
},
30
]
31
32
- return <Stack as={CardList} direction="column" gap={4} items={guides} />
+ return <CardList className="flex flex-col gap-4" items={guides} />
33
}
34
35
export default StakingGuides
0 commit comments