Fixed share page issue.

This commit is contained in:
Mike Cao 2022-10-24 19:48:10 -07:00
parent fc879bbb7d
commit 2290be7ca4
5 changed files with 13 additions and 16 deletions

View file

@ -14,11 +14,9 @@ export default function SharePage() {
return null;
}
const { websiteUuid } = shareToken;
return (
<Layout>
<WebsiteDetails websiteId={websiteUuid} />
<WebsiteDetails websiteId={shareToken.id} />
</Layout>
);
}