From 7cd6fdda957bf78dccecbb620fe70ec7c2cb923d Mon Sep 17 00:00:00 2001 From: alcpereira <48070464+alcpereira@users.noreply.github.com> Date: Mon, 3 Jun 2024 11:06:35 +0100 Subject: [PATCH] chore: fix `lint:deno` script (#9540) (cherry picked from commit 54e583fd966dfbc2ffc41b4d68c1ee3b2d61e00e) --- 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 = () => {