From 79fb5b5cda58ab3c31dd9adc37f98a3939dde3df Mon Sep 17 00:00:00 2001 From: Ryan Hopper-Lowe <46546486+ryanhopperlowe@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:37:09 -0600 Subject: [PATCH] fix: Prevent browser tab title from being set to "New Remix App" (#708) Signed-off-by: Ryan Hopper-Lowe --- ui/admin/app/routes/_index.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ui/admin/app/routes/_index.tsx b/ui/admin/app/routes/_index.tsx index 48f013a9..06447841 100644 --- a/ui/admin/app/routes/_index.tsx +++ b/ui/admin/app/routes/_index.tsx @@ -1,13 +1,6 @@ -import { type MetaFunction, redirect, useLoaderData } from "@remix-run/react"; +import { redirect, useLoaderData } from "@remix-run/react"; import { $path } from "remix-routes"; -export const meta: MetaFunction = () => { - return [ - { title: "New Remix App" }, - { name: "description", content: "Welcome to Remix!" }, - ]; -}; - export const clientLoader = async () => { throw redirect($path("/agents")); };