fix: hide page title on mobile Profile view

The mobile profile form already renders its own header via
ProfileMobileView, so the desktop page title was redundant on small
viewports.

Quality gates: npm run typecheck, npm run lint

Refs: openspec/changes/mobile-tool-profile-ui
This commit is contained in:
Developer
2026-06-13 21:45:33 +00:00
parent 025ccc5817
commit 1ae8d0e45f
9 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ export const ProfilePage = () => {
return (
<section className="stack">
<h1>Profile</h1>
{!isMobile && <h1>Profile</h1>}
{displayStatus === "loading" && <LoadingState message="Loading profile..." />}