Skip to content

Commit 6628bb8

Browse files
chore: changed message on user creation
1 parent 15615f6 commit 6628bb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/UserService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ const UserService = Object.freeze({
2828
createUser: async (user: UserCreate) => {
2929
return await tryRequest(
3030
apiClient?.api?.users.createUser(user),
31-
'All in-memory collections were wiped',
32-
'Unable to wipe the in-memory collections',
31+
`User ${user.username} was created successfully`,
32+
`Unable to create user ${user.username}`,
3333
)
3434
},
3535
updateUser: async (id: string, body: UserUpdate) => {

0 commit comments

Comments
 (0)