Fixed reports fetch.

This commit is contained in:
Mike Cao 2025-10-08 15:56:38 -07:00
parent bac3ab2c1a
commit 8a13e2c70a
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
import { SharePage } from './SharePage';
export default async function ({ params }: { params: Promise<{ shareId: string }> }) {
export default async function ({ params }: { params: Promise<{ shareId: string[] }> }) {
const { shareId } = await params;
return <SharePage shareId={shareId[0]} />;