diff --git a/src/pages/Landing/index.tsx b/src/pages/Landing/index.tsx index 4b650b0d1..db6991c26 100644 --- a/src/pages/Landing/index.tsx +++ b/src/pages/Landing/index.tsx @@ -95,7 +95,7 @@ const ContentContainer = styled.div<{ isDarkMode: boolean }>` min-height: 500px; z-index: ${Z_INDEX.under_dropdown}; transition: ${({ theme }) => `${theme.transition.duration.medium} ${theme.transition.timing.ease} opacity`}; - height: 66vh; + height: 82vh; pointer-events: none; * { pointer-events: auto; diff --git a/src/state/swap/hooks.tsx b/src/state/swap/hooks.tsx index 883815c72..5c3280b4d 100644 --- a/src/state/swap/hooks.tsx +++ b/src/state/swap/hooks.tsx @@ -224,10 +224,10 @@ export function queryParametersToSwapState(parsedQs: ParsedQs): SwapState { if (inputCurrency === '' && outputCurrency === '' && typedValue === '' && independentField === Field.INPUT) { // Defaults to having the native currency selected - inputCurrency = 'ETH' + outputCurrency= 'ETH' } else if (inputCurrency === outputCurrency) { // clear output if identical - outputCurrency = '' + inputCurrency = '' } const recipient = validatedRecipient(parsedQs.recipient)