Skip to content

Commit

Permalink
Fix registration bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Sep 21, 2021
1 parent 0dbe5ad commit 56e3a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/web/src/components/Register.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
if (!this.email.length) return;
this.loading = true;
await fetch('/api/user', {
await window.std('/api/user', {
method: 'POST',
body: {
username: this.username,
Expand Down

0 comments on commit 56e3a14

Please sign in to comment.