From e4040965639ec8c94d96d6ecc26982a31a3c642b Mon Sep 17 00:00:00 2001 From: Beautiful Mim <156966699+beautifulmim@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:46:26 -0400 Subject: [PATCH] Posts first version (#811) * Static version * CSS updates * Posts release candidate * Commit ammend * First batch of corrections * Second bash of assertion errors fixes * Updated assertion for cookies * Post content field switched to a textarea * Added posts styles * Updating asserting for searchParams function * Rolled back duplicated button showing condition * Visual bug fixed * Bugfix building error * Removed debug code --- frontend/app/src/pages/intel/moons/index.astro | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/app/src/pages/intel/moons/index.astro b/frontend/app/src/pages/intel/moons/index.astro index 5e66e810..319a0255 100644 --- a/frontend/app/src/pages/intel/moons/index.astro +++ b/frontend/app/src/pages/intel/moons/index.astro @@ -38,10 +38,6 @@ const distance = Astro.url.searchParams.get('distance') ?? '10' const region = Astro.url.searchParams.get('region') ?? '1' const security = Astro.url.searchParams.get('security') ?? 'low' -console.log(distance) -console.log(region) -console.log(security) - try { systems = await get_moon_systems(home_system, parseInt(distance), region === '1')