(userId: string)
| 15 | ]; |
| 16 | |
| 17 | export const userNotificationPreferences = (userId: string) => { |
| 18 | return { |
| 19 | queryKey: userNotificationPreferencesKey(userId), |
| 20 | queryFn: () => API.getUserNotificationPreferences(userId), |
| 21 | }; |
| 22 | }; |
| 23 | |
| 24 | export const updateUserNotificationPreferences = ( |
| 25 | userId: string, |
no test coverage detected