chore: simplify URLs

This commit is contained in:
Carlos Valente
2025-05-27 15:38:10 +02:00
committed by arc-alex
parent 7b8445597f
commit b66c19769d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ const rundownPath = `${apiEntryUrl}/rundown`;
* HTTP request to fetch a list of existing rundowns
*/
export async function fetchProjectRundownList(): Promise<ProjectRundownsList> {
const res = await axios.get(`${rundownPath}/`);
const res = await axios.get(rundownPath);
return res.data;
}