Skip to content

Commit

Permalink
style: add space
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-1979 committed Sep 8, 2024
1 parent 08947ac commit 174e174
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import WatchList from './partials/WatchList';
export default function HomePageFullScreen (): React.ReactElement {
useFullscreen();
const { t } = useTranslation();

const onAction = useContext(ActionContext);
const { notify } = useAlerts();
const initialAccountList = useAccountsOrder(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useCallback, useContext, useLayoutEffect, useState } from 'react';
import { AccountContext } from '../components';
import { saveNewOrder } from '../fullscreen/homeFullScreen/partials/DraggableAccountList';

export default function useAccountsOrder(isFullScreenMode?: boolean): AccountsOrder[] | undefined {
export default function useAccountsOrder (isFullScreenMode?: boolean): AccountsOrder[] | undefined {
const { accounts: accountsInExtension, hierarchy } = useContext(AccountContext);

const [initialAccountList, setInitialAccountList] = useState<AccountsOrder[] | undefined>();
Expand Down

0 comments on commit 174e174

Please sign in to comment.