Merge branch 'dev' into jajaja

This commit is contained in:
Mike Cao
2025-02-14 11:45:34 -08:00
4 changed files with 19 additions and 37 deletions

View File

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