diff --git a/apps/web/pages/settings/my-account/profile.tsx b/apps/web/pages/settings/my-account/profile.tsx index 4585c34351..33764324e6 100644 --- a/apps/web/pages/settings/my-account/profile.tsx +++ b/apps/web/pages/settings/my-account/profile.tsx @@ -181,7 +181,9 @@ const ProfileView = () => { }; if (isLoading || !user || isLoadingAvatar || !avatar) - return ; + return ( + + ); const defaultValues = { username: user.username || "", diff --git a/packages/ui/v2/core/Meta.tsx b/packages/ui/v2/core/Meta.tsx index 2f143b8384..e868802205 100644 --- a/packages/ui/v2/core/Meta.tsx +++ b/packages/ui/v2/core/Meta.tsx @@ -54,11 +54,10 @@ export default function Meta({ title, description, backButton, CTA }: MetaType) // eslint-disable-next-line react-hooks/exhaustive-deps }, [title, description, backButton, CTA]); + const title_ = `${title} | ${APP_NAME}`; return ( - - {title} | {APP_NAME} - + {title_} );