受け取る側は name しか使っていません。passwordHash はブラウザに届きますか。
app/profile/page.tsx
Serverで実行
export default async function Page() {Serverで実行
const user = await getUser()Browserで実行
return <Profile user={user} />Serverで実行
}