From 74e22691ac877fda75f35c7ca5cddc9b94e9cab9 Mon Sep 17 00:00:00 2001 From: Sarthak Agrawal Date: Sun, 9 Aug 2026 12:49:01 +0530 Subject: [PATCH] fix: remove release check warnings --- app/layout.tsx | 12 ------------ package.json | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 1763fdc..a4f96a5 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -5,18 +5,6 @@ import "./globals.css"; const SITE_ORIGIN = "https://setline.significanthobbies.com"; const description = "Build the plan once. Follow it precisely every day with guided sets, rest timing, and device-local workout history."; -const structuredData = { - "@context": "https://schema.org", - "@type": "SoftwareApplication", - name: "Setline", - applicationCategory: "HealthApplication", - operatingSystem: "Web", - url: `${SITE_ORIGIN}/`, - image: `${SITE_ORIGIN}/og.png`, - description, - sameAs: ["https://github.com/Significant-Hobbies/setline"], -}; - export async function generateMetadata(): Promise { const requestHeaders = await headers(); const host = diff --git a/package.json b/package.json index 4383968..ee6e2a1 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "db:migrate:local": "wrangler d1 migrations apply setline --local", "db:migrate:remote": "wrangler d1 migrations apply setline --remote", "deploy": "pnpm run check && wrangler deploy --config dist/server/wrangler.json --tag \"$(git rev-parse HEAD)\"", - "test": "pnpm run build && node --test tests/*.test.mjs", + "test": "pnpm run build && node --test --test-concurrency=1 tests/*.test.mjs", "lint": "eslint . --ignore-pattern dist --ignore-pattern .next" }, "dependencies": {