Skip to content

Commit

Permalink
feat: make client id mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
ieow committed Mar 21, 2024
1 parent 0015535 commit b64ea85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SingleFactorAuth/SingleFactorAuthArgs.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class SingleFactorAuthArgs {
private var networkUrl: String
private var web3AuthClientId: String

public init(web3AuthClientId: String = "", network: TorusNetwork, networkUrl: String = "") {
public init(web3AuthClientId: String, network: TorusNetwork, networkUrl: String = "") {
self.network = network
self.networkUrl = networkUrl
self.web3AuthClientId = web3AuthClientId
Expand Down

0 comments on commit b64ea85

Please sign in to comment.