We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15615f6 commit 6628bb8Copy full SHA for 6628bb8
src/services/UserService.ts
@@ -28,8 +28,8 @@ const UserService = Object.freeze({
28
createUser: async (user: UserCreate) => {
29
return await tryRequest(
30
apiClient?.api?.users.createUser(user),
31
- 'All in-memory collections were wiped',
32
- 'Unable to wipe the in-memory collections',
+ `User ${user.username} was created successfully`,
+ `Unable to create user ${user.username}`,
33
)
34
},
35
updateUser: async (id: string, body: UserUpdate) => {
0 commit comments