Skip to content

Commit f159e6d

Browse files
committed
fix: fix a import path
1 parent dd962c5 commit f159e6d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

packages/adena-extension/src/services/wallet/wallet-account.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AccountInfo, GnoProvider } from '@common/provider/gno/gno-provider';
1+
import { AccountInfo, GnoProvider } from '@common/provider/gno';
22
import { WalletAccountRepository } from '@repositories/wallet';
33
import { Account } from 'adena-module';
44

@@ -83,11 +83,9 @@ export class WalletAccountService {
8383
return this.walletAccountRepository.getAccountNames();
8484
};
8585

86-
public updateAccountNames = async (
87-
accountNames: {
88-
[key in string]: string;
89-
},
90-
): Promise<boolean> => {
86+
public updateAccountNames = async (accountNames: {
87+
[key in string]: string;
88+
}): Promise<boolean> => {
9189
return this.walletAccountRepository.updateAccountNames(accountNames);
9290
};
9391

0 commit comments

Comments
 (0)