Skip to content

Commit 88b343e

Browse files
committed
fix route
1 parent 10afeb0 commit 88b343e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/builder/src/components/grants/ApplicationCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ export default function ApplicationCard({
201201
applicationStartTime >= new Date("2024-12-01T00:00:00Z");
202202

203203
const applicationViewLink = showCheckerLink
204-
? `https://beta.checker.gitcoin.co/view/application/${applicationData.chainId}-${applicationData.roundID}-${applicationData.application.id}`
204+
? `https://beta.checker.gitcoin.co/view/application/${applicationData.chainId}/${applicationData.roundID}/${applicationData.application.id}`
205205
: roundApplicationViewPath(
206206
applicationData.chainId.toString(),
207207
applicationData.roundID,

packages/round-manager/src/features/round/GrantApplications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function GrantApplications(props: {
6868
</div>
6969
<div className="h-8 px-3 py-2 bg-[#00433b] rounded-lg border border-[#00433b] justify-center items-center gap-1.5 inline-flex">
7070
<Link
71-
to={`https://beta.checker.gitcoin.co/review/${props.chainId}-${props.roundId}`}
71+
to={`https://beta.checker.gitcoin.co/review/${props.chainId}/${props.roundId}`}
7272
className="text-white text-sm font-medium font-['DM Mono'] leading-none"
7373
>
7474
Review Applications

0 commit comments

Comments
 (0)