File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
web/src/pages/Resolver/NavigationButtons Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ const NextButton: React.FC<INextButton> = ({ nextRoute }) => {
41
41
const isButtonDisabled =
42
42
( location . pathname . includes ( "/resolver/title" ) && ! disputeData . title ) ||
43
43
( location . pathname . includes ( "/resolver/description" ) && ! disputeData . description ) ||
44
- ( location . pathname . includes ( "/resolver/court" ) && ( ! disputeData . courtId || ! isGatedTokenValid ) ) ||
44
+ ( location . pathname . includes ( "/resolver/court" ) &&
45
+ ( ! disputeData . courtId || ! isGatedTokenValid || ! disputeData . disputeKitId ) ) ||
45
46
( location . pathname . includes ( "/resolver/jurors" ) && ! disputeData . arbitrationCost ) ||
46
47
( location . pathname . includes ( "/resolver/voting-options" ) && ! areVotingOptionsFilled ) ||
47
48
( location . pathname . includes ( "/resolver/notable-persons" ) && ! areAliasesValidOrEmpty ) ||
You can’t perform that action at this time.
0 commit comments