Skip to content

Commit 34044ce

Browse files
authored
Merge pull request xch-dev#629 from dkackman/bug-627
Fix Strike Asset label
2 parents 7b109a7 + 7664325 commit 34044ce

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/OptionGridView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ function OptionAssetPreview({
237237
label={
238238
asset === option.underlying_asset
239239
? t`Underlying Asset`
240-
: t`Strike Price`
240+
: t`Strike Asset`
241241
}
242242
content={null}
243243
>

src/components/confirmations/MintOptionConfirmation.tsx.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function MintOptionConfirmation({
9898
{strikeAsset && strikeAmount && (
9999
<ConfirmationCard
100100
icon={<Handshake className='h-8 w-8 text-green-500' />}
101-
title={<Trans>Strike Price</Trans>}
101+
title={<Trans>Strike Asset</Trans>}
102102
>
103103
<div className='flex items-center gap-3 rounded-lg'>
104104
<AssetIcon

src/pages/Option.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export default function Option() {
180180
/>
181181
</LabeledItem>
182182

183-
<LabeledItem label={t`Strike Price`} content={null}>
183+
<LabeledItem label={t`Strike Asset`} content={null}>
184184
<AssetCoin
185185
asset={option.strike_asset}
186186
amount={option.strike_amount}

0 commit comments

Comments
 (0)