Skip to content

Commit

Permalink
Fix: Fixed text on the CPK upgrade card (#2077)
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankaus authored Jul 5, 2021
1 parent ade4f37 commit 2a30963
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/components/market/common/set_allowance/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ export const SetAllowance: React.FC<SetAllowanceProps> = (props: SetAllowancePro

return (
<Wrapper {...restProps}>
<Title>{collateral ? 'Set Allowance' : 'Enable Markets'}</Title>
<Title>{collateral ? 'Set Allowance' : 'Upgrade Omen Account'}</Title>
<DescriptionWrapper>
<Description>
{collateral
? `This permission allows the smart contracts to interact with your ${collateral &&
collateral.symbol}. This has to be done for each new token.`
: `This permission allows you to interact with market contracts.`}
: `A new version of the Omen account smart contract is available. Upgrade your Omen account now.`}
</Description>
<ToggleTokenLock finished={finished} loading={loading} onUnlock={onUnlock} />
</DescriptionWrapper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const ToggleTokenLock = (props: ToggleTokenLockProps) => {

return (
<ButtonStateful disabled={loading || finished} onClick={onUnlock} state={state}>
Set
Upgrade
</ButtonStateful>
)
}

0 comments on commit 2a30963

Please sign in to comment.