fix: use explicit value in Plural tag (#3363)

one is non-functional (I don't know why), but _1 seems to work 🤷
This commit is contained in:
Zach Pomerantz 2022-02-28 10:41:15 -08:00 committed by GitHub
parent fc34912b53
commit ad080470da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,7 +48,7 @@ export function ImportToken(props: ImportProps) {
<RowBetween>
{onBack ? <ArrowLeft style={{ cursor: 'pointer' }} onClick={onBack} /> : <div />}
<ThemedText.MediumHeader>
<Plural value={tokens.length} one="Import token" other="Import tokens" />
<Plural value={tokens.length} _1="Import token" other="Import tokens" />
</ThemedText.MediumHeader>
{onDismiss ? <CloseIcon onClick={onDismiss} /> : <div />}
</RowBetween>