Skip to content

Commit

Permalink
KYC button hotfix (#2683)
Browse files Browse the repository at this point in the history
* fixed merchant screening rule

* fixed merchant screening rule
  • Loading branch information
Omri-Levy authored Sep 4, 2024
1 parent 7409d7c commit be4d302
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ export const CaseCallToActionLegacy: FunctionComponent<ICaseCallToActionLegacyPr
variant={`success`}
disabled={data?.disabled || isDisabled}
onClick={onMutateApproveCase}
className={ctw({
'!bg-success': !data?.disabled,
})}
>
{value}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ export const useKycBlock = ({
disabled={isDisabled}
size={'wide'}
variant={'success'}
className={ctw({
'!bg-success': !isDisabled
})}
>
Approve
</MotionButton>
Expand Down

0 comments on commit be4d302

Please sign in to comment.