Commit 8ea5cb45 authored by Patrick's avatar Patrick Committed by GitHub

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
parent 58249e3c
......@@ -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'}>
......
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