diff --git a/frontend/wizard-vue/index.html b/frontend/wizard-vue/index.html
index 4249508..14eb09d 100644
--- a/frontend/wizard-vue/index.html
+++ b/frontend/wizard-vue/index.html
@@ -3,7 +3,7 @@
- Vite App
+ RSS Alchemy
diff --git a/frontend/wizard-vue/src/urlmaker/index.ts b/frontend/wizard-vue/src/urlmaker/index.ts
index bc92e28..4477638 100644
--- a/frontend/wizard-vue/src/urlmaker/index.ts
+++ b/frontend/wizard-vue/src/urlmaker/index.ts
@@ -1,8 +1,8 @@
import type {Specs} from "@/urlmaker/specs.ts";
const apiBase = import.meta.env.VITE_API_BASE || document.location.origin;
-const renderEndpoint = '/api/v1/render/';
-const screenshotEndpoint = `/api/v1/screenshot/`;
+const renderEndpoint = '/api/v1/render/'; // trailing slash
+const screenshotEndpoint = '/api/v1/screenshot'; // no trailing slash
export async function decodeUrl(url: string): Promise {
const splitUrl = url.split(renderEndpoint);