Skip to content

Commit ce50ae0

Browse files
author
Marcin Mazurek
committed
[DDW-1111] Revert unrelated changes
1 parent 4431282 commit ce50ae0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/common/types/logging.types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import type {
1414
} from '../../renderer/app/api/wallets/types';
1515
import type { Address } from '../../renderer/app/api/addresses/types';
1616
import type { GetTransactionsRequest } from '../../renderer/app/api/transactions/types';
17+
import type { HardwareWalletLocalData } from '../../renderer/app/api/utils/localStorage';
1718
import type { AdaApiStakePool } from '../../renderer/app/api/staking/types';
18-
import { HardwareWalletLocalData } from '../../renderer/app/types/localDataTypes';
1919

2020
export type LoggingLevel = 'debug' | 'info' | 'error' | 'warn';
2121
export type Logger = {

source/renderer/app/stores/WalletSettingsStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import { getStatusFromWalletData } from '../utils/walletRecoveryPhraseVerificati
99
import { getRawWalletId } from '../api/utils';
1010
import type { WalletExportToFileParams } from '../actions/wallet-settings-actions';
1111
import type { WalletUtxos } from '../api/wallets/types';
12+
import type { WalletLocalData } from '../api/utils/localStorage';
1213
import { RECOVERY_PHRASE_VERIFICATION_STATUSES } from '../config/walletRecoveryPhraseVerificationConfig';
13-
import { WalletLocalData } from '../types/localDataTypes';
1414

1515
export default class WalletSettingsStore extends Store {
1616
@observable

source/renderer/app/stores/WalletsLocalStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { observable, computed } from 'mobx';
22
import Store from './lib/Store';
33
import Request from './lib/LocalizedRequest';
44
import { asyncForEach } from '../utils/asyncForEach';
5-
import { WalletsLocalData } from '../types/localDataTypes';
5+
import type { WalletsLocalData } from '../api/utils/localStorage';
66

77
export default class WalletsLocalStore extends Store {
88
@observable

0 commit comments

Comments
 (0)