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:
parent
58249e3ce2
commit
8ea5cb450a
@ -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'}>
|
||||
|
Loading…
Reference in New Issue
Block a user