diff --git a/apps/dashboard/src/components/core/card/ActionsCard.tsx b/apps/dashboard/src/components/core/card/ActionsCard.tsx index 298bbfd..191b34b 100644 --- a/apps/dashboard/src/components/core/card/ActionsCard.tsx +++ b/apps/dashboard/src/components/core/card/ActionsCard.tsx @@ -1,6 +1,7 @@ -import { DefaultMantineColor, SimpleGrid, Text, UnstyledButton } from '@mantine/core'; +import { Box, DefaultMantineColor, SimpleGrid, Text, UnstyledButton } from '@mantine/core'; import classes from '@/styles/ActionsCard.module.css'; +import Link from 'next/link'; import { BlankCard } from './BlankCard'; export function ActionsCard({ @@ -18,14 +19,14 @@ export function ActionsCard({ }[]; }) { const items = links.map((item) => ( - + {item.title} )); - const Wrapper = withCard ? BlankCard : 'div'; + const Wrapper = withCard ? BlankCard : Box; return (