remove trailing slashes in some routes

This commit is contained in:
maxDorninger
2025-06-29 23:29:22 +02:00
parent 08883de98d
commit 44b9137b64
3 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
let loading = false;
onMount(async () => {
loading = true;
const response = await fetch(apiUrl + '/movies/', {
const response = await fetch(apiUrl + '/movies', {
method: 'GET',
headers: {
'Content-Type': 'application/json'