Skip to content

Commit

Permalink
fix: dappName required for argent mobile connector
Browse files Browse the repository at this point in the history
  • Loading branch information
bluecco committed Aug 12, 2024
1 parent acbe492 commit 93f6700
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connectors/argentMobile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { isInArgentMobileAppBrowser } from "./helpers"
import { InjectedConnector, InjectedConnectorOptions } from "../injected"

export interface ArgentMobileConnectorOptions {
dappName?: string
dappName: string
projectId?: string
chainId?: constants.NetworkName
description?: string
Expand All @@ -46,7 +46,7 @@ export class ArgentMobileBaseConnector extends Connector {
private _wallet: StarknetWindowObject | null = null
private _options: ArgentMobileConnectorOptions

constructor(options: ArgentMobileConnectorOptions = {}) {
constructor(options: ArgentMobileConnectorOptions) {
super()
this._options = options
}
Expand Down

0 comments on commit 93f6700

Please sign in to comment.