Skip to content

Commit

Permalink
Merge branch 'dev/FE' into feat/614
Browse files Browse the repository at this point in the history
  • Loading branch information
guridaek committed Oct 8, 2023
2 parents 53a05c0 + 6b01bf9 commit 68a9dc6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/pages/RunnerPostDetailPage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { useState, useContext } from 'react';
import React, { useContext } from 'react';
import { styled } from 'styled-components';
import { useParams } from 'react-router-dom';
import { usePageRouter } from '@/hooks/usePageRouter';
Expand Down Expand Up @@ -35,8 +35,6 @@ const RunnerPostPage = () => {
const { showErrorToast } = useContext(ToastContext);
const { openModal, closeModal } = useContext(ModalContext);

const [message, setMessage] = useState<string>('');

const { data: runnerPostDetail } = useRunnerPostDetail(runnerPostId, isLogin());
const { mutate: deleteRunnerPost } = useRunnerPostDelete();
const { mutate: suggestReview, isPending: isPendingSuggestion } = useReviewSuggestion();
Expand Down

0 comments on commit 68a9dc6

Please sign in to comment.