From 123d38e949c10d89b4c6d631190c50038ab98863 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 23 Jun 2026 18:52:09 +0800 Subject: [PATCH] fix: remove dead HomeTriggerDevBanner import The HomeTriggerDevBanner component was removed from the repo but its import in app/routes/index.tsx remained. The symbol is never rendered, so this is a dangling import that breaks `tsc` (and therefore the `npm run lint` gate that CONTRIBUTING.md asks every contributor to run) on a clean checkout of main. --- app/routes/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routes/index.tsx b/app/routes/index.tsx index c61e21ee6..680fb1d22 100644 --- a/app/routes/index.tsx +++ b/app/routes/index.tsx @@ -13,7 +13,6 @@ import { } from "../services/toast.server"; import { json, useLoaderData } from "remix"; import ToastPopover from "../components/UI/ToastPopover"; -import { HomeTriggerDevBanner } from "~/components/Home/HomeTriggerDevBanner"; type LoaderData = { toastMessage?: ToastMessage };