fix: sort imports to pass ESLint

This commit is contained in:
github-actions[bot]
2026-01-22 18:45:11 +03:00
parent b6dab363ca
commit 7e3a96ef5a
2 changed files with 4 additions and 5 deletions
+4 -4
View File
@@ -1,19 +1,19 @@
// Copyright 2017-2026 @pezkuwi/app-accounts authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@pezkuwi/vanitygen/types';
import type { ActionStatus } from '@pezkuwi/react-components/Status/types';
import type { KeypairType } from '@pezkuwi/util-crypto/types';
import type { GeneratorMatch, GeneratorMatches, GeneratorResult } from '@pezkuwi/vanitygen/types';
import generator from '@pezkuwi/vanitygen/generator';
import matchRegex from '@pezkuwi/vanitygen/regex';
import generatorSort from '@pezkuwi/vanitygen/sort';
import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';
import { Button, Dropdown, Input, styled, Table } from '@pezkuwi/react-components';
import { useApi, useIsMountedRef } from '@pezkuwi/react-hooks';
import { settings } from '@pezkuwi/ui-settings';
import { nextTick } from '@pezkuwi/util';
import generator from '@pezkuwi/vanitygen/generator';
import matchRegex from '@pezkuwi/vanitygen/regex';
import generatorSort from '@pezkuwi/vanitygen/sort';
import CreateModal from '../modals/Create.js';
import { useTranslation } from '../translate.js';
@@ -11,7 +11,6 @@ import type { Ledger, LedgerGeneric } from '@pezkuwi/hw-ledger';
import type { Registry, SignerPayloadJSON } from '@pezkuwi/types/types';
import { merkleizeMetadata } from '@pezkuwi/merkleize-metadata';
import { settings } from '@pezkuwi/ui-settings';
import { objectSpread, u8aToHex } from '@pezkuwi/util';