Skip to content

Commit

Permalink
fix redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
nl32 committed Nov 5, 2024
1 parent ff62f72 commit 59ba703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/admin/ClubTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function ClubTable({ clubs }: { clubs: Club[] }) {
id: 'view',
cell: ({ row }) => (
<Link
href={`orgs/${row.original.id}`}
href={`clubs/${row.original.id}`}
className="rounded-md bg-slate-300 px-2 py-1 text-blue-500 transition-colors hover:bg-slate-400 hover:text-blue-600"
target="_blank"
>
Expand Down

0 comments on commit 59ba703

Please sign in to comment.