From a8aca41b117b2f837376011a983c9bec1bfd9d5d Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 3 Oct 2025 13:10:21 +0000 Subject: [PATCH 1/2] Fix: Correct unterminated string constant in actions.tsx The build was failing due to an "Unterminated string constant" error in `app/actions.tsx`. This was caused by multi-line strings being defined with double quotes instead of backticks. This commit replaces the double quotes with backticks for the multi-line strings, creating template literals that correctly handle multi-line strings in TSX. This resolves the syntax error and allows the build to complete successfully. --- app/actions.tsx | 5 ++--- dev.log | 7 ------- 2 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 dev.log diff --git a/app/actions.tsx b/app/actions.tsx index c5cf671e..ab79a286 100644 --- a/app/actions.tsx +++ b/app/actions.tsx @@ -59,10 +59,9 @@ async function submit(formData?: FormData, skip?: boolean) { if (userInput.toLowerCase().trim() === 'what is a planet computer?' || userInput.toLowerCase().trim() === 'what is qcx-terra?') { const definition = userInput.toLowerCase().trim() === 'what is a planet computer?' - ? "A planet computer is a proprietary environment aware system that interoperates Climate forecasting, mapping and scheduling using cutting edge multi-agents to streamline automation and exploration on a planet. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing) + ? `A planet computer is a proprietary environment aware system that interoperates Climate forecasting, mapping and scheduling using cutting edge multi-agents to streamline automation and exploration on a planet. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing)` - : "QCX-Terra is a model garden of pixel level precision geospatial foundational models for efficient land feature predictions from satellite imagery. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing) -"; + : `QCX-Terra is a model garden of pixel level precision geospatial foundational models for efficient land feature predictions from satellite imagery. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing)`; const content = JSON.stringify(Object.fromEntries(formData!)); const type = 'input'; diff --git a/dev.log b/dev.log deleted file mode 100644 index d83bb75f..00000000 --- a/dev.log +++ /dev/null @@ -1,7 +0,0 @@ - ⚠ Port 3000 is in use, using available port 3001 instead. - ▲ Next.js 15.3.3 (Turbopack) - - Local: http://localhost:3001 - - Network: http://192.168.0.2:3001 - - Environments: .env.local, .env - - ✓ Starting... From 5475a53b4f575f4fdb13bb28f6e4bb1e602ae523 Mon Sep 17 00:00:00 2001 From: EreQ Date: Fri, 3 Oct 2025 16:14:56 +0300 Subject: [PATCH 2/2] Update actions.tsx --- app/actions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/actions.tsx b/app/actions.tsx index ab79a286..761d5600 100644 --- a/app/actions.tsx +++ b/app/actions.tsx @@ -59,9 +59,9 @@ async function submit(formData?: FormData, skip?: boolean) { if (userInput.toLowerCase().trim() === 'what is a planet computer?' || userInput.toLowerCase().trim() === 'what is qcx-terra?') { const definition = userInput.toLowerCase().trim() === 'what is a planet computer?' - ? `A planet computer is a proprietary environment aware system that interoperates Climate forecasting, mapping and scheduling using cutting edge multi-agents to streamline automation and exploration on a planet. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing)` + ? `A planet computer is a proprietary environment aware system that interoperates Climate forecasting, mapping and scheduling using cutting edge multi-agents to streamline automation and exploration on a planet. Available for our Pro and Enterprise customers. [QCX Pricing](https://www.queue.cx/#pricing)` - : `QCX-Terra is a model garden of pixel level precision geospatial foundational models for efficient land feature predictions from satellite imagery. Available for our Pro and Enterprise customers. > [Queue Pricing](https://www.queue.cx/#pricing)`; + : `QCX-Terra is a model garden of pixel level precision geospatial foundational models for efficient land feature predictions from satellite imagery. Available for our Pro and Enterprise customers. [QCX Pricing] (https://www.queue.cx/#pricing)`; const content = JSON.stringify(Object.fromEntries(formData!)); const type = 'input';