Skip to content

Commit

Permalink
Fix 2023W Solution Link
Browse files Browse the repository at this point in the history
  • Loading branch information
2093ab committed Mar 13, 2024
1 parent fd78ff2 commit f3b98b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/campcontest.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const CampContest = ({ seasonList_, seasonData_ }) => {
</ArchiveButton>
<ArchiveButton
href={
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") +
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") +
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${
currentSeasonData.fileNames.solutionPdf
}`
Expand Down Expand Up @@ -352,7 +352,7 @@ const CampContest = ({ seasonList_, seasonData_ }) => {
</ArchiveButton>
<ArchiveButton
href={
(currentSeasonIdx !== 0 ? "https://api.suapc.kr/" : "/res/") +
(currentSeasonIdx > 1 ? "https://api.suapc.kr/" : "/res/") +
`${currentYear}${currentSeason === "Winter" ? "w" : "s"}/${
currentSeasonData.fileNames.solutionPdf
}`
Expand Down

0 comments on commit f3b98b9

Please sign in to comment.