이제 즐겨찾기 기능을 완성했으니까, 별자리 데이터 요청을 회원도 할 수 있게 됨. (자동으로 되는거긴 하지만)그에 대한 하드코딩을 지우고 이제 제대로 백엔드와 통신후에 요청이 되도록 수정하면 될듯.function StarMap() { const [constellationData, setConstellationData] = useState(null); const [error, setError] = useState(null); const { location, isLoading } = useUserLocation(); // 사용자 위치와 로딩 상태를 가져옴 const { isAuthenticated } = useAuth(); // 로그인 상태 확인 const { userId } = ..