diff --git a/packages/widget/src/components/Header/WalletHeader.tsx b/packages/widget/src/components/Header/WalletHeader.tsx index 2882d16fc..87ef0acd9 100644 --- a/packages/widget/src/components/Header/WalletHeader.tsx +++ b/packages/widget/src/components/Header/WalletHeader.tsx @@ -2,7 +2,7 @@ import { ContentCopy as ContentCopyIcon, ExpandMore as ExpandMoreIcon, PowerSettingsNewRounded as PowerSettingsIcon, - WalletOutlined as WalletOutlinedIcon + WalletOutlined as WalletOutlinedIcon, } from '@mui/icons-material'; import { Avatar, MenuItem } from '@mui/material'; import { useState } from 'react'; diff --git a/packages/widget/src/components/SwapInput/SwapInput.style.tsx b/packages/widget/src/components/SwapInput/SwapInput.style.tsx index 851c79def..848bbf1eb 100644 --- a/packages/widget/src/components/SwapInput/SwapInput.style.tsx +++ b/packages/widget/src/components/SwapInput/SwapInput.style.tsx @@ -12,6 +12,7 @@ export const FormControl = styled(MuiFormControl)(({ theme }) => ({ export const Input = styled(InputBase)(({ theme }) => ({ fontSize: 24, fontWeight: 700, + boxShadow: 'none', // padding: theme.spacing(2, 2, 2, 0), [`.${inputBaseClasses.input}`]: { height: 32, diff --git a/packages/widget/src/hooks/useRouteExecution.ts b/packages/widget/src/hooks/useRouteExecution.ts index b7d09860d..679eeb62e 100644 --- a/packages/widget/src/hooks/useRouteExecution.ts +++ b/packages/widget/src/hooks/useRouteExecution.ts @@ -8,7 +8,7 @@ import { isRouteActive, isRouteDone, isRouteFailed, - useRouteExecutionStore + useRouteExecutionStore, } from '../stores'; import { WidgetEvent } from '../types/events'; import { deepClone } from '../utils'; @@ -104,7 +104,7 @@ export const useRouteExecution = ({ if (!routeExecution?.route) { throw Error('Execution route not found.'); } - queryClient.removeQueries(['routes']) + queryClient.removeQueries(['routes']); return lifi.executeRoute(account.signer, routeExecution.route, { updateCallback, switchChainHook,