Skip to content

Commit

Permalink
Merge pull request #115 from mongodb-developer/main
Browse files Browse the repository at this point in the history
  • Loading branch information
snarvaez authored Mar 18, 2024
2 parents 6cf1ae3 + b45650e commit 340dd8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion website/Pages/EventHome.razor
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ else
private string GetQRCodeForCurrentUrl()
{
string url = "https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=" +
NavigationManager.Uri + "?EventId=" + _eventId;
NavigationManager.BaseUri + "?EventId=" + _eventId;
Console.WriteLine(url);
return url;
}
Expand Down
2 changes: 1 addition & 1 deletion website/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
private string GetQRCodeForCurrentUrl()
{
string url = "https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=" +
NavigationManager.Uri + "?EventId=" + _eventId;
NavigationManager.BaseUri + "?EventId=" + _eventId;
Console.WriteLine(url);
return url;
}
Expand Down

0 comments on commit 340dd8a

Please sign in to comment.