chore: change inactive to closed (#1780)

This commit is contained in:
Justin Domingue 2021-06-01 08:23:23 -07:00 committed by GitHub
parent 6bb7d9d9b2
commit 305d2e1df9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -48,7 +48,7 @@ export default function RangeBadge({
<AlertCircle width={14} height={14} />
&nbsp;
<BadgeText>
<Trans>Inactive</Trans>
<Trans>Closed</Trans>
</BadgeText>
</Badge>
</MouseoverTooltip>

@ -399,7 +399,7 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
disabled={removed || percent === 0 || !liquidityValue0}
onClick={() => setShowConfirm(true)}
>
{removed ? <Trans>Inactive</Trans> : error ?? <Trans>Remove</Trans>}
{removed ? <Trans>Closed</Trans> : error ?? <Trans>Remove</Trans>}
</ButtonConfirmed>
</AutoColumn>
</div>