以下のコードの問題点は何ですか? ```javascript function UserProfile({ userId }) { const [user, setUser] = useState(null); if (userId) { const [loading, setLoading] = useState(false); } return <div>{user?.name}</div>; } ```