일기 작성 페이지에서 새로고침, 뒤로가기 등을 시도할 때 이동을 막고 경고 모달을 띄우려고 한다. const router = useRouter();const pathname = usePathname(); // 현재 경로const lastPathname = useRef(pathname); // 이전 경로 저장useEffect(() => { if (pathname !== lastPathname.current) { // 페이지 이동 시도 감지 setShowSaveRestrictionModal(true); // 모달 띄우기 router.replace(lastPathname.current); // 현재 페이지로 강제 이동 → 이동 막기 }}, [pathname, router]);pathnam..