Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <timo@animo.id>
  • Loading branch information
TimoGlastra committed Feb 1, 2024
1 parent 558b631 commit 930ff1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/core/src/wallet/WalletModule.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Module } from '../plugins'
import type { DependencyManager, Module } from '../plugins'

import { WalletApi } from './WalletApi'

Expand All @@ -9,7 +9,8 @@ export class WalletModule implements Module {
/**
* Registers the dependencies of the wallet module on the injection dependencyManager.
*/
public register() {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
public register(dependencyManager: DependencyManager) {
// no-op, only API needs to be registered
}
}

0 comments on commit 930ff1a

Please sign in to comment.