Skip to content
This repository has been archived by the owner on Feb 21, 2025. It is now read-only.

Commit

Permalink
- fixes library 500 error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamarcke committed Mar 7, 2024
1 parent c9826ce commit 30664bb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/pages/library/[userId]/collection/[collectionId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ import React from "react";
import { useRouter } from "next/router";
import LibraryView from "@/components/library/view/LibraryView";
import CollectionView from "@/components/collection/view/CollectionView";
import { NextPageContext } from "next";

export const getServerSideProps = (context: NextPageContext) => {
const { userId, collectionId } = context.query;
};

const Collection = () => {
const router = useRouter();
Expand Down

0 comments on commit 30664bb

Please sign in to comment.