Skip to content

Commit

Permalink
fix(explorer): fix incorrect path for single snapshot
Browse files Browse the repository at this point in the history
It was still using the old path, without the `/artifact`, that was
removed with #2206.

Co-authored-by: Damien Lachaume <[email protected]>
  • Loading branch information
Alenar and dlachaume committed Jan 22, 2025
1 parent b6083e6 commit 25b63c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function CardanoDbSnapshotsList(props) {
<Badge bg="secondary">{snapshot.beacon.network}</Badge>

<RawJsonButton
href={`${aggregator}/snapshot/${snapshot.digest}`}
href={`${aggregator}/artifact/snapshot/${snapshot.digest}`}
size="sm"
className="ms-auto"
/>
Expand Down

0 comments on commit 25b63c6

Please sign in to comment.