We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff9412 commit 4601d73Copy full SHA for 4601d73
1 file changed
src/components/Tool/Home/Tool.tsx
@@ -7,6 +7,7 @@ import {
7
Card,
8
CardActionArea,
9
CardContent,
10
+ Link,
11
Typography,
12
} from '@mui/material';
13
import clsx from 'clsx';
@@ -89,9 +90,11 @@ const Tool = ({
89
90
elevation={3}
91
data-testid={`${toolId}-container`}
92
>
- <NextLink
93
+ <Link
94
+ component={NextLink}
95
href={`/accountLists/${accountListId}/tools/${url}`}
- scroll={false}
96
+ color="inherit"
97
+ underline="none"
98
99
<CardActionArea>
100
<CardContent className={classes.cardContent}>
@@ -116,7 +119,7 @@ const Tool = ({
116
119
<Typography variant="subtitle2">{desc}</Typography>
117
120
</CardContent>
118
121
</CardActionArea>
- </NextLink>
122
+ </Link>
123
</Card>
124
);
125
};
0 commit comments