Skip to content

Commit

Permalink
feat: code refractored
Browse files Browse the repository at this point in the history
Signed-off-by: Gaurav Goel <[email protected]>
  • Loading branch information
grvgoel81 authored and Gaurav Goel committed May 21, 2024
1 parent c0ee4ae commit 329c6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Plugins/Web3AuthSDK/Web3Auth.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,11 @@ public async void launchWalletServices(ChainConfig chainConfig, string path = "w
UriBuilder uriBuilder = new UriBuilder(this.web3AuthOptions.walletSdkUrl);
if(this.web3AuthOptions.sdkUrl.Contains("develop"))
{
uriBuilder.Path = "/" + "start";
uriBuilder.Path = "/" + path;
}
else
{
uriBuilder.Path += "/" + "start";
uriBuilder.Path += "/" + path;
}
uriBuilder.Fragment = "b64Params=" + hash;
//Debug.Log("finalUriBuilderToOpen: =>" + uriBuilder.ToString());
Expand Down

0 comments on commit 329c6f6

Please sign in to comment.