Skip to content

Commit

Permalink
fix: popEmoji 시간 제한을 20초로 수정한다
Browse files Browse the repository at this point in the history
* 20초
  • Loading branch information
dididy committed Aug 20, 2021
1 parent 16a5ea7 commit fb89bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FE/components/molecules/ChatBubble/ChatBubble.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const ChatBubble = forwardRef<HTMLInputElement, ChatBubbleProps>(
useEffect(() => {
if (
type === 'TEAM_INVITE_ACCEPTED' &&
DateTime.now().diff(time).toMillis() < 1000
DateTime.now().diff(time).toMillis() < 20000
) {
popEmoji();
}
Expand Down

0 comments on commit fb89bc2

Please sign in to comment.