1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-19 21:09:37 +02:00

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 // Build API URL with parameters
let apiUrl = `${serverEndpoint}/api/collections/?order_by=${order_by}&order_direction=${order_direction}&page=${page}`; 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, { let initialFetch = await fetch(apiUrl, {
headers: { headers: {
Cookie: `sessionid=${sessionId}` Cookie: `sessionid=${sessionId}`