Skip to content

Commit

Permalink
Fix link in gold standings (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jl5her authored Oct 28, 2023
1 parent 893f1c6 commit 7cd3399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/gold/Standings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const Standings = (): React.JSX.Element => {
{problems.map((problem) => (
<Table.HeaderCell key={problem.id} collapsing>
{user?.division === 'blue' || user?.role === 'admin' ? (
<Link to={`/blue/problems/${problem.id}`}>{problem.id}</Link>
<Link to={`/gold/problems/${problem.id}`}>{problem.id}</Link>
) : (
problem.id
)}
Expand Down

0 comments on commit 7cd3399

Please sign in to comment.