Skip to content

Commit

Permalink
fix links in SubmissionDetailsPage
Browse files Browse the repository at this point in the history
  • Loading branch information
axellorreyne committed May 23, 2024
1 parent db3d153 commit 6641cf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/[locale]/components/SubmissionDetailsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const SubmissionDetailsPage: React.FC<SubmissionDetailsPageProps> = ({ locale, s
variant="contained"
color="primary"
startIcon={<DownloadIcon />}
href={`${backend_url}/submissions_${submission_id}`}
href={`${backend_url}/submissions/${submission_id}`}
download
size="small"
>
Expand All @@ -179,7 +179,7 @@ const SubmissionDetailsPage: React.FC<SubmissionDetailsPageProps> = ({ locale, s
variant="contained"
color="primary"
startIcon={<DownloadIcon />}
href={`${backend_url}/submissions_${submission_id}_artifacts`}
href={`${backend_url}/submissions/${submission_id}/download_artifacts`}
download
size="small"
>
Expand Down

0 comments on commit 6641cf8

Please sign in to comment.