(userId: string)
| 256 | }; |
| 257 | |
| 258 | export const updateProfile = (userId: string) => { |
| 259 | return { |
| 260 | mutationFn: (req: UpdateUserProfileRequest) => |
| 261 | API.updateProfile(userId, req), |
| 262 | }; |
| 263 | }; |
| 264 | |
| 265 | export const myAppearanceKey = ["me", "appearance"] as const; |
| 266 |