From f5ff1117089fe88e1c66b25bce2df1dbefe396f9 Mon Sep 17 00:00:00 2001 From: Wassim SAMAD Date: Tue, 26 May 2026 14:58:01 -0400 Subject: [PATCH] fix(ifc-converter): broken Contributions GitHub URL (#335) apps/ifc-converter/app/page.tsx pointed at github.com/pascalorg/editor/apps/ifc-converter which 404s. The canonical path includes /tree/main/. Same URL is reused by the forthcoming community /ifc page (in pascalorg/private-editor) so keeping them consistent matters. Co-authored-by: Claude Opus 4.7 (1M context) --- apps/ifc-converter/app/page.tsx | 2 +- apps/ifc-converter/next-env.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ifc-converter/app/page.tsx b/apps/ifc-converter/app/page.tsx index fca65093..3de1633a 100644 --- a/apps/ifc-converter/app/page.tsx +++ b/apps/ifc-converter/app/page.tsx @@ -16,7 +16,7 @@ export default function HomePage() { elements, default-height walls, skipped items.{' '} diff --git a/apps/ifc-converter/next-env.d.ts b/apps/ifc-converter/next-env.d.ts index 9edff1c7..c4e7c0eb 100644 --- a/apps/ifc-converter/next-env.d.ts +++ b/apps/ifc-converter/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import './.next/types/routes.d.ts' // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.