Skip to content

Commit 4c53ce0

Browse files
committed
resolved PR comments
Signed-off-by: Gaurav Goel <[email protected]>
1 parent 613805f commit 4c53ce0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Assets/Plugins/Web3AuthSDK/Samples/Web3AuthSample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void Start()
7373
}
7474
*/
7575
clientId = "BG4pe3aBso5SjVbpotFQGnXVHgxhgOxnqnNBKyjfEJ3izFvIVWUaMIzoCrAfYag8O6t6a6AOvdLcS4JR2sQMjR4",
76-
buildEnv = BuildEnv.TESTING,
76+
buildEnv = BuildEnv.PRODUCTION,
7777
redirectUrl = new Uri("torusapp://com.torus.Web3AuthUnity/auth"),
7878
network = Web3Auth.Network.SAPPHIRE_DEVNET
7979
});

Assets/Plugins/Web3AuthSDK/Types/Web3AuthOptions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class Web3AuthOptions {
55
public string clientId { get; set; }
66
public Web3Auth.Network network { get; set; }
77

8-
public Web3Auth.BuildEnv buildEnv { get; set; }
8+
public Web3Auth.BuildEnv buildEnv { get; set; } = Web3Auth.BuildEnv.PRODUCTION;
99
public Uri redirectUrl { get; set; }
1010
public string sdkUrl {
1111
get {
@@ -20,9 +20,9 @@ public string sdkUrl {
2020
}
2121
public const string openLoginVersion = "v5";
2222

23-
public WhiteLabelData whiteLabel { get; set; }
24-
public Dictionary<string, LoginConfigItem> loginConfig { get; set; }
23+
public WhiteLabelData? whiteLabel { get; set; }
24+
public Dictionary<string, LoginConfigItem>? loginConfig { get; set; }
2525
public bool? useCoreKitKey { get; set; } = false;
2626
public Web3Auth.ChainNamespace? chainNamespace { get; set; } = Web3Auth.ChainNamespace.EIP155;
27-
public MfaSettings mfaSettings { get; set; } = null;
27+
public MfaSettings? mfaSettings { get; set; } = null;
2828
}

0 commit comments

Comments
 (0)