Skip to content

Commit 484040a

Browse files
committed
fix(nodejs:website): Fix props.
1 parent f6f9b72 commit 484040a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nodejs/packages/website/pages/tools/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ const PagePaper = styled(Paper)(({
2222
margin: theme.spacing(3),
2323
}));
2424
const StyledTypography = styled(Typography)(({
25-
theme
25+
theme,
2626
}) => ({
2727
fontSize: '1.44rem',
28+
fontWeight: 400,
2829
}));
2930

3031
interface Props {}
3132

3233
function Tools(props: Props) {
3334
// eslint-disable-next-line @typescript-eslint/no-unused-vars
3435

35-
3636
return (
3737
<Layout>
3838
<Head>
@@ -46,7 +46,7 @@ function Tools(props: Props) {
4646
<PagePaper>
4747
<Link href="/tools/vultr-latency">
4848
<a>
49-
<StyledTypography component="h3">
49+
<StyledTypography>
5050
Vultr Networks Latency
5151
</StyledTypography>
5252
</a>
@@ -55,7 +55,7 @@ function Tools(props: Props) {
5555
<PagePaper>
5656
<Link href="/tools/elixir-nodes">
5757
<a>
58-
<StyledTypography component="h3">
58+
<StyledTypography>
5959
Elixir Nodes
6060
</StyledTypography>
6161
</a>

0 commit comments

Comments
 (0)