-
+
{isMe ? 'λ' : name}
@@ -44,13 +39,12 @@ export const GatherMemberProfile = ({ meetingId, member }: GatherMemberProfilePr
interface ProfileImageProps {
imageUrl?: string;
- isConnection?: boolean;
isOnwer?: boolean;
handWavingStatus: HandWavingStatusType;
}
-const ProfileImage = ({ imageUrl, isConnection = false, isOnwer = false, handWavingStatus }: ProfileImageProps) => {
- const isHandWaving = isConnection || handWavingStatus === 'REQUESTED' || handWavingStatus === 'ACCEPTED';
+const ProfileImage = ({ imageUrl, isOnwer = false, handWavingStatus }: ProfileImageProps) => {
+ const isHandWaving = handWavingStatus === 'REQUESTED' || handWavingStatus === 'ACCEPTED';
const color = handWavingStatus === 'ACCEPTED' ? colors.primary500 : colors.grey500;
diff --git a/packages/web-domains/src/home/features/gather-member/services/useGatherMemberProfileListService.tsx b/packages/web-domains/src/home/features/gather-member/services/useGatherMemberProfileListService.tsx
index ffe1d5a9..d230ceae 100644
--- a/packages/web-domains/src/home/features/gather-member/services/useGatherMemberProfileListService.tsx
+++ b/packages/web-domains/src/home/features/gather-member/services/useGatherMemberProfileListService.tsx
@@ -1,5 +1,4 @@
import { useAtomValue } from 'jotai';
-import { debounce } from 'lodash-es';
import { useEffect, useState } from 'react';
import { getWebDomain } from '@/common';
@@ -64,13 +63,7 @@ export const useGatherMemberProfileListService = () => {
}, [data]);
useEffect(() => {
- let filter;
- filter = debounce(handleChangeGatherMemberList, 300);
- filter(searchInput);
-
- return () => {
- filter = null;
- };
+ handleChangeGatherMemberList(searchInput);
}, [searchInput]);
return {
diff --git a/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx b/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx
index 26b2a7c3..7f7f0ddd 100644
--- a/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx
+++ b/packages/web-domains/src/home/features/notification/containers/AlarmListContainer.tsx
@@ -64,7 +64,8 @@ export const AlarmListContainer = () => {
/>
);
}
-
+ case 'HAND_WAVING_ACCEPTED':
+ case 'HAND_WAVING_REJECTED':
case 'QUESTION_REGISTERED':
case 'TARGET_MEMBER':
return
;
diff --git a/packages/web-domains/src/user/common/api/mutations/useModifyUserInfo.ts b/packages/web-domains/src/user/common/api/mutations/useModifyUserInfo.ts
index 02a5ebea..cf967dd2 100644
--- a/packages/web-domains/src/user/common/api/mutations/useModifyUserInfo.ts
+++ b/packages/web-domains/src/user/common/api/mutations/useModifyUserInfo.ts
@@ -40,7 +40,6 @@ export const useModifyUserInfo = ({ options }: Args) => {
async function modifyUserInfo(params: Params): Promise
{
const { meetingId, ...restParams } = params;
- console.log(restParams);
const data = await Http.PATCH(`/v1/meetings/${meetingId}/members/me`, restParams);
return data;
}