Skip to content

Commit

Permalink
Merge pull request #221 from depromeet/feature/my-page-edit
Browse files Browse the repository at this point in the history
jungjjeong | chore: console.log 삭제
  • Loading branch information
Jungjjeong authored Jan 29, 2024
2 parents e2ea290 + 33b20af commit aa37929
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const Home = () => {
if (unreadPosts.length > 0) {
const lastPostDate = new Date(unreadPosts[0].postCreatedDate);
const today = new Date();
console.log(today, unreadPosts, lastPostDate);

if (
lastPostDate.getFullYear() === today.getFullYear() &&
lastPostDate.getMonth() === today.getMonth() &&
Expand Down
1 change: 0 additions & 1 deletion src/app/post/done.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export const Done = () => {
const navigate = useNavigate();
const location = useLocation();
const state = location.state as postProps;
console.log(state.postId);

const handleShare = () => {
// TODO: 클립보드에 링크 복사하기
Expand Down

0 comments on commit aa37929

Please sign in to comment.