Skip to content

Commit 1f8350f

Browse files
committed
location tweaks
1 parent 2976737 commit 1f8350f

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

components/Header/LaunchButton.tsx

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
import Button from "@mui/material/Button";
44
import React, {ReactNode, useEffect} from "react";
5-
import {Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle} from "@mui/material";
5+
import Dialog from "@mui/material/Dialog";
6+
import DialogActions from "@mui/material/DialogActions";
7+
import DialogContent from "@mui/material/DialogContent";
8+
import DialogContentText from "@mui/material/DialogContentText";
9+
import DialogTitle from "@mui/material/DialogTitle";
10+
import Link from "@mui/material/Link";
611
import {NOTEBOOK_URL} from "@/app/config";
712

813

@@ -51,9 +56,11 @@ const LaunchButton = ({children}: {children: ReactNode}) => {
5156
skipFutureCheck();
5257
launchNotebooks()
5358
}}>Course Is Complete</Button>
54-
<Button href={'/get-started'} autoFocus>
55-
Take Me To The Course
56-
</Button>
59+
<Link href={'/get-started'}>
60+
<Button autoFocus>
61+
Take Me To The Course
62+
</Button>
63+
</Link>
5764
</DialogActions>
5865
</Dialog>
5966
</>

0 commit comments

Comments
 (0)