File tree 5 files changed +10
-28
lines changed
web-devtools/src/app/(main)/ruler
5 files changed +10
-28
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,10 @@ function cancelSiteDeploy() #siteId
8
8
do
9
9
local name=$( jq -r .name <<< $build )
10
10
local branch=$( jq -r .branch <<< $build )
11
- if ! [[ " $branch " =~ ^dependabot/ || " $branch " =~ ^renovate/ ]]; then
12
- continue ;
11
+ if [[ " $branch " =~ ^dependabot/ || " $branch " =~ ^renovate/ ]]; then
12
+ echo " Cancelling build for $name $branch "
13
+ netlify api cancelSiteDeploy -d ' { "deploy_id": "' $( jq -r .id <<< $build ) ' "}' > /dev/null
13
14
fi
14
- echo " Cancelling build for $name $branch "
15
- netlify api cancelSiteDeploy -d ' { "deploy_id": "' $( jq -r .id <<< $build ) ' "}' > /dev/null
16
15
done
17
16
}
18
17
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ const SelectArbitrable: React.FC = () => {
135
135
136
136
const [ [ chainId , address ] ] = Object . entries ( klerosCoreAddress ) ;
137
137
if ( chainId !== DEFAULT_CHAIN . toString ( ) ) {
138
- throw new Error ( `Kleros Core is not deployed on chain ${ chainId } ` ) ;
138
+ console . error ( `Kleros Core is not deployed on chain ${ chainId } ` ) ;
139
139
}
140
140
141
141
return (
Original file line number Diff line number Diff line change 78
78
},
79
79
"dependencies" : {
80
80
"@cyntler/react-doc-viewer" : " ^1.17.0" ,
81
- "@kleros/kleros-app" : " ^2.0.1 " ,
81
+ "@kleros/kleros-app" : " ^2.0.2 " ,
82
82
"@kleros/kleros-sdk" : " workspace:^" ,
83
83
"@kleros/kleros-v2-contracts" : " workspace:^" ,
84
84
"@kleros/ui-components-library" : " ^2.19.0" ,
Original file line number Diff line number Diff line change 1
1
import React from "react" ;
2
2
import styled , { css } from "styled-components" ;
3
3
4
- import { landscapeStyle } from "styles/landscapeStyle" ;
5
-
6
4
import { useToggle } from "react-use" ;
7
5
6
+ import { landscapeStyle } from "styles/landscapeStyle" ;
7
+
8
8
import HowItWorks from "components/HowItWorks" ;
9
9
import JurorLevels from "components/Popup/MiniGuides/JurorLevels" ;
10
10
@@ -14,7 +14,7 @@ const Container = styled.div`
14
14
width: 100%;
15
15
background-color: ${ ( { theme } ) => theme . lightBlue } ;
16
16
padding: 16px;
17
- border 1px solid ${ ( { theme } ) => theme . stroke } ;
17
+ border: 1px solid ${ ( { theme } ) => theme . stroke } ;
18
18
border-top-left-radius: 3px;
19
19
border-top-right-radius: 3px;
20
20
border-bottom: none;
Original file line number Diff line number Diff line change @@ -5370,24 +5370,7 @@ __metadata:
5370
5370
languageName: node
5371
5371
linkType: hard
5372
5372
5373
- "@kleros/kleros-app@npm:^2.0.1":
5374
- version: 2.0.1
5375
- resolution: "@kleros/kleros-app@npm:2.0.1"
5376
- dependencies:
5377
- jose: "npm:^5.9.6"
5378
- peerDependencies:
5379
- "@tanstack/react-query": ^5.59.20
5380
- graphql: ^16.9.0
5381
- graphql-request: ^7.1.2
5382
- react: ^18.3.1
5383
- react-dom: ^18.3.1
5384
- viem: ^2.21.42
5385
- wagmi: ^2.13.0
5386
- checksum: 10/a193e49fe82738eaa7df3b82857fd74a5407e6ed166edeacd2352bbd149a49ea3cfde98f130fe0473f006761260cbf2475bc4fa138ad05650540eec43b9755d1
5387
- languageName: node
5388
- linkType: hard
5389
-
5390
- "@kleros/kleros-app@workspace:kleros-app":
5373
+ "@kleros/kleros-app@npm:^2.0.2, @kleros/kleros-app@workspace:kleros-app":
5391
5374
version: 0.0.0-use.local
5392
5375
resolution: "@kleros/kleros-app@workspace:kleros-app"
5393
5376
dependencies:
@@ -5621,7 +5604,7 @@ __metadata:
5621
5604
"@eslint/js": "npm:^9.15.0"
5622
5605
"@graphql-codegen/cli": "npm:^5.0.3"
5623
5606
"@graphql-codegen/client-preset": "npm:^4.5.1"
5624
- "@kleros/kleros-app": "npm:^2.0.1 "
5607
+ "@kleros/kleros-app": "npm:^2.0.2 "
5625
5608
"@kleros/kleros-sdk": "workspace:^"
5626
5609
"@kleros/kleros-v2-contracts": "workspace:^"
5627
5610
"@kleros/kleros-v2-eslint-config": "workspace:^"
You can’t perform that action at this time.
0 commit comments