Skip to content

Commit e366308

Browse files
committed
fix :: 빌드 오류 해결
1 parent 33b2786 commit e366308

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/home/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useEffect } from "react"
44
import { useRouter } from "next/navigation"
55
import Container from "../components/Container"
66
import NavigationBar from "../components/NavigationBar"
7-
import { useChild } from "../contexts/ChildContext";
7+
import { useChild } from "@/app/contexts/ChildContext";
88

99
const EMOTION_COLORS = {
1010
즐거움: '#3DC8EF',

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Metadata } from "next";
22
import { Inter } from "next/font/google";
33
import "./globals.css";
4-
import { ChildProvider } from "./contexts/ChildContext";
4+
import { ChildProvider } from "@/app/contexts/ChildContext";
55

66
const inter = Inter({ subsets: ["latin"] });
77

app/settings/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useEffect } from "react"
44
import { useRouter } from "next/navigation"
55
import Container from "../components/Container"
66
import NavigationBar from "../components/NavigationBar"
7-
import { useChild } from "../contexts/ChildContext"
7+
import { useChild } from "@/app/contexts/ChildContext"
88

99
const apiBaseUrl = process.env.NEXT_PUBLIC_API_BASE_URL
1010

app/stats/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useEffect } from "react"
44
import { useRouter } from "next/navigation"
55
import Container from "../components/Container"
66
import NavigationBar from "../components/NavigationBar"
7-
import { useChild } from "../contexts/ChildContext"
7+
import { useChild } from "@/app/contexts/ChildContext"
88
import {
99
Chart as ChartJS,
1010
ArcElement,

0 commit comments

Comments
 (0)