import path 깊이 수정

구조 개편 후 depth가 한 단계 깊어진 components/common, components/pc,
features/admin/pc/components 내부 파일들의 상대 import 경로 업데이트

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-04-19 11:37:15 +09:00
parent 1ad25630bf
commit 4da16abc10
5 changed files with 10 additions and 10 deletions

View file

@ -1,8 +1,8 @@
import { useMemo } from 'react'
import { useQuery } from '@tanstack/react-query'
import { motion, AnimatePresence } from 'framer-motion'
import { api } from '../api/client'
import { useAuthStore } from '../stores/auth'
import { api } from '../../api/client'
import { useAuthStore } from '../../stores/auth'
/**
* 캐릭터 입력 input 아래 뜨는 드롭다운

View file

@ -1,7 +1,7 @@
import { useEffect, useState } from 'react'
import { motion, AnimatePresence } from 'framer-motion'
import { useAuthStore } from '../stores/auth'
import { api } from '../api/client'
import { useAuthStore } from '../../stores/auth'
import { api } from '../../api/client'
export default function LoginDialog({ open, onClose }) {
const apiKey = useAuthStore((s) => s.apiKey)

View file

@ -1,11 +1,11 @@
import { createContext, useContext, useState, useEffect } from 'react'
import { Outlet, Link, useLocation, useMatch } from 'react-router-dom'
import { useQuery } from '@tanstack/react-query'
import { api } from '../api/client'
import { api } from '../../api/client'
import Footer from './Footer'
import LoginDialog from './LoginDialog'
import { useThemeStore } from '../stores/theme'
import { useAuthStore } from '../stores/auth'
import LoginDialog from '../common/LoginDialog'
import { useThemeStore } from '../../stores/theme'
import { useAuthStore } from '../../stores/auth'
const SITE_NAME = '메이플스토리 유틸리티'

View file

@ -1,7 +1,7 @@
import { useState } from 'react'
import { useQueries } from '@tanstack/react-query'
import { motion, AnimatePresence } from 'framer-motion'
import { api } from '../api/client'
import { api } from '../../api/client'
const SECTIONS = {
notice: { label: '메이플스토리 공지사항', dataKey: 'notice', pageSize: 5, kind: 'text' },

View file

@ -1,6 +1,6 @@
import { useState, useEffect } from 'react'
import { useQuery } from '@tanstack/react-query'
import { api } from '../../../api/client'
import { api } from '../../../../api/client'
const PAGE_SIZE = 24