simplify makeApiUrl

This commit is contained in:
Connor Yoh 2025-07-22 17:34:46 +01:00
parent eda02c3cee
commit 1aa5430b67

View File

@ -18,5 +18,5 @@ export const makeApiUrl = (endpoint: string): string => {
}
return `${endpoint}`;
return endpoint;
};