refactor: remove unused Route.MetaArgs type from home meta function
This commit is contained in:
parent
48bca99f37
commit
8425ad3b42
1 changed files with 5 additions and 2 deletions
|
|
@ -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",
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue