diff --git a/app/routes/u.$identifier.tsx b/app/routes/u.$identifier.tsx index d323e558a..9f66e9793 100644 --- a/app/routes/u.$identifier.tsx +++ b/app/routes/u.$identifier.tsx @@ -23,6 +23,8 @@ export const links: LinksFunction = () => { }; export const meta: MetaFunction = ({ data }: { data: UserPageLoaderData }) => { + if (!data) return {}; + return { title: makeTitle(discordFullName(data)), };