Skip to content

Commit

Permalink
Show options in the specific case (#156)
Browse files Browse the repository at this point in the history
Co-authored-by: Filip Lelek <[email protected]>
  • Loading branch information
Filip-L and filip-neti authored Nov 4, 2024
1 parent aac45cf commit ba30a05
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/cards/AppInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,13 @@ const AppInfoCard: React.FC<ComponentProps> = ({
<div className="flex gap-3 items-center flex-col">
{typeof selectedAllocator === 'object' &&
selectedAllocator?.client_contract_address &&
selectedAllocator?.client_contract_address !== null && (
selectedAllocator?.client_contract_address !== null &&
[
'KYCRequested',
'Submitted',
'AdditionalInfoRequired',
'AdditionalInfoSubmitted',
].includes(application?.Lifecycle?.State) && (
<div className="flex justify-items-center justify-between content-center items-center w-full">
<FormControl>
<FormLabel id="demo-controlled-radio-buttons-group">
Expand Down

0 comments on commit ba30a05

Please sign in to comment.