Skip to content

Commit

Permalink
[FE] REFACTOR: 불필요한 로그 출력 삭제 #1718
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunk03 committed Dec 23, 2024
1 parent 3fe91e8 commit e3e56a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/src/Presentation/pages/RegisterPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ const RegisterPage = () => {
const response = await axiosGetPresentationAbleDates();
const availableDates = response.data.results;
availableDates.sort();
console.log(availableDates);
const formattedAvailableDates = availableDates.map(
(dateTime: string) => {
return format(new Date(dateTime), "y/M/d");
Expand Down

0 comments on commit e3e56a1

Please sign in to comment.