Skip to content

Commit 2cedd23

Browse files
author
Marcin Mazurek
committed
Revert "[DDW-1111] Revert unrelated changes"
This reverts commit ce50ae0.
1 parent ce50ae0 commit 2cedd23

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';
1817
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';
1312
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 type { WalletsLocalData } from '../api/utils/localStorage';
5+
import { WalletsLocalData } from '../types/localDataTypes';
66

77
export default class WalletsLocalStore extends Store {
88
@observable

0 commit comments

Comments
 (0)