Commit 305d2e1d authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

chore: change `inactive` to `closed` (#1780)

parent 6bb7d9d9
...@@ -48,7 +48,7 @@ export default function RangeBadge({ ...@@ -48,7 +48,7 @@ export default function RangeBadge({
<AlertCircle width={14} height={14} /> <AlertCircle width={14} height={14} />
&nbsp; &nbsp;
<BadgeText> <BadgeText>
<Trans>Inactive</Trans> <Trans>Closed</Trans>
</BadgeText> </BadgeText>
</Badge> </Badge>
</MouseoverTooltip> </MouseoverTooltip>
......
...@@ -399,7 +399,7 @@ function Remove({ tokenId }: { tokenId: BigNumber }) { ...@@ -399,7 +399,7 @@ function Remove({ tokenId }: { tokenId: BigNumber }) {
disabled={removed || percent === 0 || !liquidityValue0} disabled={removed || percent === 0 || !liquidityValue0}
onClick={() => setShowConfirm(true)} onClick={() => setShowConfirm(true)}
> >
{removed ? <Trans>Inactive</Trans> : error ?? <Trans>Remove</Trans>} {removed ? <Trans>Closed</Trans> : error ?? <Trans>Remove</Trans>}
</ButtonConfirmed> </ButtonConfirmed>
</AutoColumn> </AutoColumn>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment