()
| 1417 | const chatDesktopEnabledKey = ["chat-desktop-enabled"] as const; |
| 1418 | |
| 1419 | export const chatDesktopEnabled = () => ({ |
| 1420 | queryKey: chatDesktopEnabledKey, |
| 1421 | queryFn: () => API.experimental.getChatDesktopEnabled(), |
| 1422 | }); |
| 1423 | |
| 1424 | export const updateChatDesktopEnabled = (queryClient: QueryClient) => ({ |
| 1425 | mutationFn: API.experimental.updateChatDesktopEnabled, |
no test coverage detected