fix: 완료된 TODO 제거
This commit is contained in:
parent
7e2a7e9208
commit
60699036f5
@ -2,7 +2,6 @@ import { useState, useRef, useEffect } from 'react';
|
||||
import styles from './PasswordChangeForm.module.css';
|
||||
|
||||
export default function PasswordChangeForm({ onSubmit, pwError = false }) {
|
||||
// TODO:
|
||||
const [errorConfirmMessage, setErrorConfirmMessage] = useState(false);
|
||||
const [errorSameMessage, setErrorSameMessage] = useState(false);
|
||||
const currentPasswordRef = useRef('');
|
||||
|
@ -2,7 +2,6 @@ import instance from '../../utils/axios/instance';
|
||||
import { API_URL } from '../../constants';
|
||||
|
||||
export function usePasswordChange() {
|
||||
// TODO: API 수정 후 실제 기능하는지 확인
|
||||
const passwordChange = (currentPw, newPw, newPwCheck) => {
|
||||
const newPasswordBody = {
|
||||
currentPassword: currentPw,
|
||||
|
@ -10,7 +10,6 @@ export default function NoticeDetailPage() {
|
||||
const notice = data?.data;
|
||||
const navigate = useNavigate();
|
||||
const { noticeDelete } = useNoticeDelete();
|
||||
// TODO: 수정 버튼 추가(여기에 또는 ArticleDetail에)
|
||||
|
||||
const handleDelete = async () => {
|
||||
await noticeDelete(noticeId);
|
||||
|
@ -11,7 +11,6 @@ export default function StudentHomePage() {
|
||||
const { data: allLectures } = useLectures();
|
||||
const allClasses = allLectures?.data ?? [];
|
||||
|
||||
// TODO: 전체 강의 안에 수강중인 강의가 나옴
|
||||
return (
|
||||
<MaxWidthLayout>
|
||||
<ClassGrid title="수강중인 강의">
|
||||
|
@ -20,7 +20,6 @@ export default function UserRegisterPage() {
|
||||
|
||||
const handleSubmit = async (e) => {
|
||||
e.preventDefault();
|
||||
// TODO: 회원가입 POST 기능 추가
|
||||
const isPWMatch = passwordRef.current.value === passwordConfirmRef.current.value;
|
||||
|
||||
setPasswordMatch(isPWMatch);
|
||||
|
Loading…
Reference in New Issue
Block a user