Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeNamedRobin committed Oct 21, 2023
1 parent 65ba67e commit 85fff44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions src/views/UserOverView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const delayedAPICall = async (skip: number) => {
true,
undefined,
undefined,
filters.value.type.value || "",
filters.value.type.value || undefined,
);
totalRecords.value = res.data._pagination.count || 0;
allUsers.value = res.data.records;
Expand Down Expand Up @@ -193,8 +193,6 @@ const handleCreateUser = handleSubmit(async (values) => {
lastName: values.lastName,
type: userTypes.indexOf(values.userType),
email: values.email || '',
ofAge: true,
canGoIntoDebt: true, // TODO: Logic for this
};
const response = await apiService.user.createUser(createUserRequest);
if (response.status === 200) {
Expand Down

0 comments on commit 85fff44

Please sign in to comment.