Skip to content

Commit

Permalink
fix: fix eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
iOdiO89 committed Jul 25, 2024
1 parent 240c856 commit 4b47732
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from 'styled-components'
import NavBar from './navBar'
import { useAtom } from 'jotai'
import { currentTabAtom, historyCountAtom, processCountAtom, waitingCountAtom } from 'utils/atom'
import { ROUTE } from '@constants/path'
import { ROUTE } from 'constants/path'

export default function Layout() {
const navigate = useNavigate()
Expand Down
2 changes: 1 addition & 1 deletion src/components/orderCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { returnTotalPrice } from 'utils/cardFunc'
import PreviousOrder from './prevOrder'
import OrderDetail from './orderDetail'
import { useState } from 'react'
import { ROUTE } from '@constants/path'
import { ROUTE } from 'constants/path'

export type productType = {
name: string
Expand Down

0 comments on commit 4b47732

Please sign in to comment.