Skip to content

Commit

Permalink
fix: PR request
Browse files Browse the repository at this point in the history
  • Loading branch information
kiram15 committed Jan 22, 2025
1 parent bedfdda commit 7a9423d
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ const useCustomerUsersTableData = (enterpriseUuid) => {
};

if (enterpriseUuid) {
if (args.filters.length && args.filters[0].value.length > 2) {
fetch();
} else if (!args.filters.length) {
if (!args.filters.length || args.filters[0].value.length > 2) {
fetch();

Check warning on line 62 in src/Configuration/Customers/data/hooks/useCustomerUsersTableData.js

View check run for this annotation

Codecov / codecov/patch

src/Configuration/Customers/data/hooks/useCustomerUsersTableData.js#L62

Added line #L62 was not covered by tests
}
}
Expand Down

0 comments on commit 7a9423d

Please sign in to comment.