Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleyyconsensys committed Feb 20, 2025
1 parent 8c6a660 commit e7e4ef9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { useEffect, useRef, useState } from 'react';

import { useAppSelector, useCurrentAccount, useCurrentNetwork } from 'hooks';
import { useMultiLanguage, useStarkNetSnap } from 'services';
import { RoundedIcon } from 'components/ui/atom/RoundedIcon';
import { AssetsList } from 'components/ui/molecule/AssetsList';
import { PopIn } from 'components/ui/molecule/PopIn';
import { PopperTooltip } from 'components/ui/molecule/PopperTooltip';
import { openExplorerTab } from 'utils/utils';
import { defaultAccount } from 'utils/constants';
import { AccountDrawer } from '../AccountDrawer';
import { AddTokenModal } from '../AddTokenModal';
import { AccountDetailsModal } from '../AccountDetailsModal';
import { ConnectInfoModal } from '../ConnectInfoModal';
import {
Expand All @@ -19,15 +27,6 @@ import {
RowDiv,
Wrapper,
} from './SideBar.style';
import { openExplorerTab } from 'utils/utils';
import { useAppSelector } from 'hooks/redux';
import { AddTokenModal } from '../AddTokenModal';
import { useMultiLanguage, useStarkNetSnap } from 'services';
import { defaultAccount } from 'utils/constants';
import { PopperTooltip } from 'components/ui/molecule/PopperTooltip';
import { AccountDrawer } from '../AccountDrawer';
import { useCurrentAccount } from 'hooks/useCurrentAccount';
import { useCurrentNetwork } from 'hooks/useCurrentNetwork';

export const SideBarView = () => {
const { getStarkName } = useStarkNetSnap();
Expand Down
1 change: 1 addition & 0 deletions packages/wallet-ui/src/hooks/useScrollTo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export const useScrollTo = <Element extends HTMLElement>(

useEffect(() => {
scrollToView();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [scrollTo]);

return {
Expand Down

0 comments on commit e7e4ef9

Please sign in to comment.