import order nit

This commit is contained in:
Aleka Cheung
2024-02-15 13:14:18 -05:00
parent 191e492647
commit e70d98c01e
2 changed files with 5 additions and 6 deletions
+1 -4
View File
@@ -35,8 +35,5 @@ export const useSelectedNetwork = (): {
[dispatch, disconnect, setLocalStorageNetwork]
);
return {
switchNetwork,
selectedNetwork,
};
return { switchNetwork, selectedNetwork };
};
@@ -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';