Skip to content

Commit

Permalink
chore: Update registration endpoint URL to use HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
shweta1122 committed Jun 16, 2024
1 parent 14eaca4 commit f04e647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion svelte-task-manager/src/routes/register/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
let password = '';
async function register() {
const response = await fetch('http://localhost:3000/register', {
const response = await fetch('https://nagp-svelte-assignment-sigma.vercel.app/register', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
Expand Down

0 comments on commit f04e647

Please sign in to comment.