From 8425ad3b429373722a1306b177ca8e3864c3e1d7 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sat, 11 Oct 2025 01:03:58 -0700 Subject: [PATCH] refactor: remove unused Route.MetaArgs type from home meta function --- app/routes/home.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/routes/home.tsx b/app/routes/home.tsx index f78a00e..9cf2890 100644 --- a/app/routes/home.tsx +++ b/app/routes/home.tsx @@ -5,10 +5,13 @@ import { toast } from "sonner"; import type { Route } from "./+types/home"; import { Welcome } from "../welcome/welcome"; -export function meta({}: Route.MetaArgs) { +export function meta() { return [ { title: "Brackt - Fantasy Sports Brackets" }, - { name: "description", content: "Create and manage your fantasy sports leagues" }, + { + name: "description", + content: "Create and manage your fantasy sports leagues", + }, ]; }