style: Fix letter case consistency (#2353)

* Fix letter case consistency

Fixed lower case to upper case to be consistent with:

src/pages/AddLiquidityV2/index.tsx
src/pages/RemoveLiquidity/index.tsx
src/pages/Swap/index.tsx
src/state/burn/hooks.ts
src/state/burn/v3/hooks.ts
src/state/mint/hooks.ts
src/state/mint/v3/hooks.ts
src/state/stake/hooks.ts
src/state/swap/hooks.ts

* style: Fix case to be consistent
This commit is contained in:
Patrick 2021-09-15 17:03:56 +02:00 committed by GitHub
parent 58249e3ce2
commit 8ea5cb450a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -58,7 +58,7 @@ export default function ClaimRewardModal({ isOpen, onDismiss, stakingInfo }: Sta
let error: string | undefined
if (!account) {
error = t`Connect wallet`
error = t`Connect Wallet`
}
if (!stakingInfo?.stakedAmount) {
error = error ?? t`Enter an amount`

@ -475,7 +475,7 @@ export default function AddLiquidity({
</ButtonPrimary>
) : !account ? (
<ButtonLight onClick={toggleWalletModal} $borderRadius="12px" padding={'12px'}>
<Trans>Connect wallet</Trans>
<Trans>Connect Wallet</Trans>
</ButtonLight>
) : (
<AutoColumn gap={'md'}>