Skip to content

Commit

Permalink
fix(web): update testnet link
Browse files Browse the repository at this point in the history
  • Loading branch information
ShubhamParkhi committed Sep 5, 2024
1 parent 87eab29 commit fa22e08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const ViewCaseButton: React.FC = () => {

const buttonLink = useMemo(() => {
if (disputeRequest?.id && resolvedEvents?.length > 0)
return `https://dev--kleros-v2.netlify.app/#/cases/${disputeRequest.id}/voting`;
return `https://dev--kleros-v2.netlify.app/#/cases/${disputeRequest.id}`;
return `https://dev--kleros-v2-testnet.netlify.app/#/cases/${disputeRequest.id}/voting`;
return `https://dev--kleros-v2-testnet.netlify.app/#/cases/${disputeRequest.id}`;
}, [disputeRequest, resolvedEvents]);

const handleButtonClick = () => {
Expand Down

0 comments on commit fa22e08

Please sign in to comment.