Skip to content

Commit 39dfab6

Browse files
committed
[FE] refactor: channelAction 상태 관리 함수에 매개변수 추가 (#74)
1 parent 49762fe commit 39dfab6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/frontend/src/stores/channelAction.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ interface ChannelActionState {
66
isSharingScreen: boolean;
77
isVideoOn: boolean;
88
isMicOn: boolean;
9-
setIsInVoiceChannel: () => void;
10-
setIsSharingScreen: () => void;
11-
setIsVideoOn: () => void;
12-
setIsMicOn: () => void;
9+
setIsInVoiceChannel: (value: boolean) => void;
10+
setIsSharingScreen: (value: boolean) => void;
11+
setIsVideoOn: (value: boolean) => void;
12+
setIsMicOn: (value: boolean) => void;
1313
}
1414

1515
export const useChannelActionStore = create<ChannelActionState>()(

0 commit comments

Comments
 (0)