Skip to content

Commit

Permalink
오류 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dochoul committed Dec 22, 2023
1 parent a4b53d6 commit c6542f1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/DiaryItem.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { useNavigate } from "react-router-dom";
import { DiaryProps } from "../types/define";
import MyButton from "./MyButton";
import { getStringDate } from "../util/date";

const DiaryItem = ({ diary }: { diary: DiaryProps }) => {
const navigate = useNavigate();
Expand Down
1 change: 0 additions & 1 deletion src/pages/Diary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { fetchDiary } from "../apis";
import { DiaryProps } from "../types/define";
import MyHeader from "../components/MyHeader";
import MyButton from "../components/MyButton";
import { getStringDate } from "../util/date";

const Diary = () => {
const { _id } = useParams();
Expand Down
1 change: 0 additions & 1 deletion src/pages/Edit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { deleteDiary, editDiary, fetchDiary } from "../apis";
import { useEffect, useRef, useState } from "react";
import { DiaryProps } from "../types/define";
import { emotionList } from "../data/emotionList";
import { getStringDate } from "../util/date";

const Edit = () => {
const navigate = useNavigate();
Expand Down

0 comments on commit c6542f1

Please sign in to comment.