Skip to content

Commit

Permalink
fix: Fix exhibitor card link
Browse files Browse the repository at this point in the history
  • Loading branch information
hampfh committed Feb 15, 2024
1 parent 38ff184 commit bb54e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/student/exhibitors/_components/ExhibitorCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function ExhibitorCard({
year: string
}) {
return (
<Link href={`/exhibitors/${exhibitor.id}?year=${year}`}>
<Link href={`/student/exhibitors/${exhibitor.id}?year=${year}`}>
<div className="group relative flex aspect-square w-32 cursor-pointer flex-col rounded-lg border-2 border-solid border-emerald-900 bg-gradient-to-br from-emerald-950 to-liqorice-700 filter hover:brightness-95 lg:w-72">
{exhibitor.logo_freesize != null ||
(exhibitor.logo_squared != null && (
Expand Down

0 comments on commit bb54e73

Please sign in to comment.