Skip to content

Commit

Permalink
fix(wallet): don't require debug flag in BrowserRuntimeConnection
Browse files Browse the repository at this point in the history
As it is not required in BrowserConnection.
  • Loading branch information
davidyuk committed Jan 16, 2025
1 parent b15c6fe commit a6808c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aepp-wallet-communication/connection/BrowserRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default class BrowserRuntimeConnection extends BrowserConnection {
/**
* @param options - Options
*/
constructor({ port, ...options }: { port: Runtime.Port; debug: boolean }) {
constructor({ port, ...options }: { port: Runtime.Port; debug?: boolean }) {
super(options);
this.port = port;
}
Expand Down

0 comments on commit a6808c6

Please sign in to comment.