Adds @netlify/plugin-nextjs package & fixed dashboard link id

This commit is contained in:
Aidan Marshall 2022-10-25 15:01:49 +01:00
parent 94dc915272
commit 574dbff07e
4 changed files with 827 additions and 17 deletions

View file

@ -30,7 +30,7 @@ export default function AccountSettings() {
const Checkmark = ({ isAdmin }) => (isAdmin ? <Icon icon={<Check />} size="medium" /> : null);
const DashboardLink = row => (
<Link href={`/dashboard/${row.userId}/${row.username}`}>
<Link href={`/dashboard/${row.id}/${row.username}`}>
<a>
<Icon icon={<LinkIcon />} />
</a>