Skip to content

Commit

Permalink
Missed "let" from defining the variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JonTheNiceGuy authored Oct 7, 2024
1 parent 74ea87a commit 2610d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/netbird.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const getNetBirdUpCommand = () => {
cmd += " --management-url " + GRPC_API_ORIGIN
}
if (!isNetBirdHosted) {
admin_url = window.location.protocol + "://" + window.location.hostname
let admin_url = window.location.protocol + "://" + window.location.hostname
if (window.location.port != "") {
admin_url += ":" + window.location.port
}
Expand Down

0 comments on commit 2610d1d

Please sign in to comment.