From 8a997a62d3e86eced31d4dbf5eddff0b85065e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Mon, 3 Jun 2024 13:09:46 +0200 Subject: [PATCH] chore: fix `lint:deno` script (#9550) Co-authored-by: alcpereira <48070464+alcpereira@users.noreply.github.com> --- integration/helpers/deno-template/app/root.tsx | 1 - integration/helpers/deno-template/app/routes/_index.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/integration/helpers/deno-template/app/root.tsx b/integration/helpers/deno-template/app/root.tsx index 60ddcdf8f82..70671f51f6f 100644 --- a/integration/helpers/deno-template/app/root.tsx +++ b/integration/helpers/deno-template/app/root.tsx @@ -8,7 +8,6 @@ import { Scripts, ScrollRestoration, } from "@remix-run/react"; -import * as React from "react"; export const links: LinksFunction = () => [ ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []), diff --git a/integration/helpers/deno-template/app/routes/_index.tsx b/integration/helpers/deno-template/app/routes/_index.tsx index 2e62fab6222..8a2235b6e9a 100644 --- a/integration/helpers/deno-template/app/routes/_index.tsx +++ b/integration/helpers/deno-template/app/routes/_index.tsx @@ -1,4 +1,3 @@ -import * as React from "react"; import type { MetaFunction } from "@remix-run/deno"; export const meta: MetaFunction = () => {