Skip to content

Commit aa2fa7e

Browse files
committed
fix: 누락된 이미지 경로 변경
1 parent 26b728a commit aa2fa7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vite-project/src/common/Pagination/Pagination.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Pagination = ({ GROUP_SIZE, totalCount, page, setPage }) => {
1818
className="button pagination-btn"
1919
disabled={page === 1}
2020
>
21-
<img src="public/images/arrow_left.svg" alt="arrow_left" />
21+
<img src="/images/arrow_left.svg" alt="arrow_left" />
2222
</button>
2323
{pages.map((num) => (
2424
<button

0 commit comments

Comments
 (0)