Skip to content

Commit

Permalink
Fix process reference error
Browse files Browse the repository at this point in the history
  • Loading branch information
catherineisonline committed Jul 25, 2024
1 parent 50ba106 commit 8c3bc41
Show file tree
Hide file tree
Showing 4 changed files with 2,376 additions and 23 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ shortlyBtn.addEventListener("click", (e) => {
}
});
function fetchBackupUrl(inputValue) {
fetch(`${BACKEND_URL}=${encodeURIComponent(inputValue)}`)
fetch(`${BACKEND_URL}${encodeURIComponent(inputValue)}`)
.then((response) => response.json())
.then((response) => {
if (response.success) {
Expand Down
Loading

0 comments on commit 8c3bc41

Please sign in to comment.