Skip to content

Commit

Permalink
fix: window.kakao 클라이언트 사이드 실행
Browse files Browse the repository at this point in the history
  • Loading branch information
uiop5809 committed Nov 6, 2024
1 parent 1251e37 commit 539828f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/WalkPage/WalkMapPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import WalkingTimer from "../../components/walking/WalkingTimer";
import MissingPetAlert from "../../components/walking/MissingPetAlert";
import { images } from "../../components/Images";

const { kakao } = window;
const { kakao } = typeof window !== "undefined" ? window : {};

const sampleMissingPet = {
name: "멍멍이",
Expand Down

0 comments on commit 539828f

Please sign in to comment.