Skip to content

Commit

Permalink
Fix unnecessarily computed prop values
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Aug 25, 2023
1 parent 1e8de68 commit 182a244
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/circulars._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ function DownloadModal() {
<ModalToggleButton modalRef={modalRef} closer>
<a
className="text-no-underline text-white"
href={`/circulars/archive.txt.tar`}
href="/circulars/archive.txt.tar"
>
Raw text
</a>
Expand All @@ -224,7 +224,7 @@ function DownloadModal() {
<ModalToggleButton modalRef={modalRef} closer>
<a
className="text-no-underline text-white"
href={`/circulars/archive.json.tar`}
href="/circulars/archive.json.tar"
>
JSON
</a>
Expand Down

0 comments on commit 182a244

Please sign in to comment.