Skip to content

Commit

Permalink
removed cateogry for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmoose committed Mar 17, 2024
1 parent 6f0701e commit 19022f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/exhibitsPage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function App() {
</div>
</Link>
{exhibits.map(exhibit => (
<Exhibit title={exhibit.title} description={exhibit.description} category={exhibit.category} image={exhibit.image || ''} key={exhibit.id} id={exhibit.id}/>
<Exhibit title={exhibit.title} description={exhibit.description} image={exhibit.image || ''} key={exhibit.id} id={exhibit.id}/>
))}
</div>
</div>
Expand Down
2 changes: 0 additions & 2 deletions src/components/userComponents/Exhibit/Exhibit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ import Image from 'next/image';
export default function Exhibit({
title,
description,
category,
image,
id,
}: {
title: string;
description: string;
category: string;
image: string;
id: string;
}) {
Expand Down

0 comments on commit 19022f5

Please sign in to comment.