get notes edit

This commit is contained in:
ed barz 2023-05-25 16:48:03 +02:00
parent 96d26ce568
commit 6b5e56d17c
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
let notes = [];
async function fetchNotes() {
const response = await fetch('http://localhost:8069/notes');
const response = await fetch('https://api.brz9.dev/getnotes');
if (response.ok) {
notes = await response.json();