fix(collections): remove debug log for API URL fetching

This commit is contained in:
Sean Morley
2025-06-14 22:01:56 -04:00
parent b0e8000cf8
commit 977843cbc6

View File

@@ -27,8 +27,6 @@ export const load = (async (event) => {
// Build API URL with parameters
let apiUrl = `${serverEndpoint}/api/collections/?order_by=${order_by}&order_direction=${order_direction}&page=${page}`;
console.log('Fetching collections from:', apiUrl);
let initialFetch = await fetch(apiUrl, {
headers: {
Cookie: `sessionid=${sessionId}`