import order nit

This commit is contained in:
Aleka Cheung 2024-02-15 13:02:52 -05:00
parent 191e492647
commit e70d98c01e
No known key found for this signature in database
GPG Key ID: 53E472E5EF4F4102
2 changed files with 5 additions and 6 deletions

View File

@ -35,8 +35,5 @@ export const useSelectedNetwork = (): {
[dispatch, disconnect, setLocalStorageNetwork]
);
return {
switchNetwork,
selectedNetwork,
};
return { switchNetwork, selectedNetwork };
};

View File

@ -3,11 +3,13 @@ import { useSelector } from 'react-redux';
import styled, { css, type AnyStyledComponent } from 'styled-components';
import { StatusResponse } from '@0xsquid/sdk';
import { useStringGetter, useURLConfigs } from '@/hooks';
import { layoutMixins } from '@/styles/layoutMixins';
import { STRING_KEYS } from '@/constants/localization';
import { TransferNotificationTypes } from '@/constants/notifications';
import { useStringGetter, useURLConfigs } from '@/hooks';
import { layoutMixins } from '@/styles/layoutMixins';
import { Link } from '@/components/Link';
import { Icon, IconName } from '@/components/Icon';
import { LoadingDots } from '@/components/Loading/LoadingDots';