Skip to content

Commit

Permalink
fix: correct import path casing to resolve build error
Browse files Browse the repository at this point in the history
  • Loading branch information
yun-cheng committed Mar 22, 2024
1 parent 95f80a4 commit 1fd91b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/NavBar/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useAtom } from 'jotai'
import { useEffect, type ReactElement } from 'react'
import { Link, useLocation } from 'react-router-dom'
import cn from 'utils/cn'
import ArrowBackSvg from '../../../icons/arrowBack.svg?react'
import ArrowBackSvg from '../../../icons/ArrowBack.svg?react'
import Logo from '../Logo'
import NavButton from './NavButton'

Expand Down
2 changes: 1 addition & 1 deletion src/pages/ResultsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useEffect, useRef, type ReactElement } from 'react'
import { useInView } from 'react-intersection-observer'
import { Link } from 'react-router-dom'
import cn from 'utils/cn'
import ArrowBackSvg from '../icons/arrowBack.svg?react'
import ArrowBackSvg from '../icons/ArrowBack.svg?react'

export default function ResultsPage(): ReactElement {
const containerRef = useRef<HTMLDivElement>(null)
Expand Down

0 comments on commit 1fd91b7

Please sign in to comment.