refactor: remove unused Route.MetaArgs type from home meta function

This commit is contained in:
Chris Parsons 2025-10-11 01:03:58 -07:00
parent 48bca99f37
commit 8425ad3b42

View file

@ -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",
},
];
}