From b97fc6de11dd201a0f0af6c3ff745878b5451063 Mon Sep 17 00:00:00 2001 From: benoit74 Date: Thu, 19 Sep 2024 11:56:21 +0000 Subject: [PATCH] Drop useless trailing / --- ui/src/stores/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/stores/main.ts b/ui/src/stores/main.ts index ff79d6f..715c623 100644 --- a/ui/src/stores/main.ts +++ b/ui/src/stores/main.ts @@ -173,7 +173,7 @@ export const useMainStore = defineStore('main', { }) try { const response = ( - await axios.post(this.config.zimit_ui_api + '/requests/', payload) + await axios.post(this.config.zimit_ui_api + '/requests', payload) ).data this.taskId = response.id } catch (error) {