Skip to content

Commit

Permalink
fix route
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Nov 28, 2024
1 parent 10afeb0 commit 88b343e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/builder/src/components/grants/ApplicationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default function ApplicationCard({
applicationStartTime >= new Date("2024-12-01T00:00:00Z");

const applicationViewLink = showCheckerLink
? `https://beta.checker.gitcoin.co/view/application/${applicationData.chainId}-${applicationData.roundID}-${applicationData.application.id}`
? `https://beta.checker.gitcoin.co/view/application/${applicationData.chainId}/${applicationData.roundID}/${applicationData.application.id}`
: roundApplicationViewPath(
applicationData.chainId.toString(),
applicationData.roundID,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function GrantApplications(props: {
</div>
<div className="h-8 px-3 py-2 bg-[#00433b] rounded-lg border border-[#00433b] justify-center items-center gap-1.5 inline-flex">
<Link
to={`https://beta.checker.gitcoin.co/review/${props.chainId}-${props.roundId}`}
to={`https://beta.checker.gitcoin.co/review/${props.chainId}/${props.roundId}`}
className="text-white text-sm font-medium font-['DM Mono'] leading-none"
>
Review Applications
Expand Down

0 comments on commit 88b343e

Please sign in to comment.