From 1aa5430b6762bca40eef1e9f1daf2db514b0ddb5 Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Tue, 22 Jul 2025 17:34:46 +0100 Subject: [PATCH] simplify makeApiUrl --- frontend/src/utils/api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/api.ts b/frontend/src/utils/api.ts index c9eb6cd0b..c901e495b 100644 --- a/frontend/src/utils/api.ts +++ b/frontend/src/utils/api.ts @@ -18,5 +18,5 @@ export const makeApiUrl = (endpoint: string): string => { } - return `${endpoint}`; + return endpoint; }; \ No newline at end of file