Skip to content

Commit

Permalink
fix: 타입 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kingyong9169 committed Feb 19, 2025
1 parent 6786469 commit cead1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ziine/src/app/artwork-webview/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function generateMetadata(
const ArtworkDetailWebviewPage = async ({ params }: { params: Promise<{ id: string }> }) => {
const { id } = await params;

return <ArtworkDetailPage id={id} needNavigateBar={false} />;
return <ArtworkDetailPage id={id} />;
};

export default ArtworkDetailWebviewPage;

0 comments on commit cead1a0

Please sign in to comment.