Skip to content

Commit

Permalink
Fix report URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Loudbooks authored Dec 12, 2024
1 parent 74154e1 commit 73a89a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/report/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
let uploadButton: HTMLButtonElement;
let url = "https://pastebook.dev/upload"
let url = "https://api.pastebook.dev/upload"
let upload = false;
let copy = false;
Expand All @@ -36,7 +36,7 @@
}
});
reportUrl = result.data;
reportUrl = `https://pastebook.dev/p/${result.data}`;
uploadButton.innerText = reportUrl;
copyToClipboard();
Expand Down

0 comments on commit 73a89a0

Please sign in to comment.