diff --git a/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-blockchain-tag.tsx b/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-blockchain-tag.tsx index 89c59cce..889c93e1 100644 --- a/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-blockchain-tag.tsx +++ b/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-blockchain-tag.tsx @@ -20,7 +20,7 @@ export function WalkthroughBlockchainTag({ }: WalkthroughBlockchainTagProps): React.JSX.Element { return ( - {'Ethereum'} + {'Ethereum'} {blockchainTagPropertyMap[blockchain].text} diff --git a/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-header.tsx b/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-header.tsx index 214a854a..e8a6e05c 100644 --- a/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-header.tsx +++ b/src/app/components/mint-unmint/components/walkthrough/components/walkthrough-header.tsx @@ -16,11 +16,9 @@ export function WalkthroughHeader({ return ( - {currentStep && ( - - Step {currentStep + 1} - - )} + + Step {currentStep !== undefined && currentStep + 1} + diff --git a/src/styles/button-theme.ts b/src/styles/button-theme.ts index a97d77b5..d5a6a749 100644 --- a/src/styles/button-theme.ts +++ b/src/styles/button-theme.ts @@ -25,7 +25,7 @@ const navigate = defineStyle({ px: '25px', h: '50px', w: '100%', - fontSize: 'sm', + fontSize: 'md', fontWeight: 600, bg: 'none', border: '1px solid',