Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
popular: popularChainsData,
all: allChainsData,
} as DisplayedChains;
}, [chainSearch, crossChainRoutes, otherToken, isOriginToken]);

Check warning on line 285 in src/views/SwapAndBridge/components/ChainTokenSelector/ChainTokenSelectorModal.tsx

View workflow job for this annotation

GitHub Actions / format-and-lint

React Hook useMemo has an unnecessary dependency: 'otherToken'. Either exclude it or remove the dependency array

return isMobile ? (
<MobileModal
Expand Down Expand Up @@ -1052,7 +1052,7 @@
// Desktop Layout Styled Components
const DesktopInnerWrapper = styled.div`
width: 100%;
height: 800px;
height: min(calc(100svh - 32px), 800px);
display: flex;
flex-direction: row;
gap: 12px;
Expand Down
Loading