Skip to content

Commit 4a22d27

Browse files
committed
feat : 메모 생성, 삭제 소켓 API 연결
- 메모 생성, 삭제, 색상 변경 기능 소켓 통신 연결 완료 - 현재 메모 생성 및 삭제 정상 작동 확인
1 parent 3729b7e commit 4a22d27

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

frontend/src/hooks/common/socket/useLandingSocket.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const useLandingSocket = (socket: Socket) => {
2727
const inviteLinkIdRef = useRef<string>("");
2828

2929
const handleInitEvent = (content: LandingDTO) => {
30-
console.log(content);
3130
const { project, myInfo, member, sprint, memoList, link, inviteLinkId } =
3231
content as LandingDTO;
3332
setProject(project);
@@ -68,7 +67,6 @@ const useLandingSocket = (socket: Socket) => {
6867
};
6968

7069
const handleOnLanding = ({ domain, action, content }: LandingSocketData) => {
71-
console.log(domain, action, content);
7270
switch (domain) {
7371
case LandingSocketDomain.INIT:
7472
handleInitEvent(content);

0 commit comments

Comments
 (0)