Solutionunvalidated
Safely access nested properties using optional chaining and/or guard clauses (e.g., `user?.profile?.name` or check `if (!user?.profile) ...`). Also ensure the profile relation is consistently loaded/populated or enforce that a profile exists before reading it.
f476c6a8-1b7f-4830-a82d-f6f485dff95c
Safely access nested properties using optional chaining and/or guard clauses (e.g., user?.profile?.name or check if (!user?.profile) ...). Also ensure the profile relation is consistently loaded/populated or enforce that a profile exists before reading it.