Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tonai committed Feb 27, 2025
1 parent a1e79c6 commit faf0de6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Empty file modified .husky/pre-commit
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function CommunityMembers({ userId }: CommunityMembersProps) {
return members;
}, [communityMembers, communitySupervisor, user?.id]);

const { search,searchedItems } = useSearch(members);
const { search, searchedItems } = useSearch(members);
const { limit, page, paginatedItems, totalPages } = usePagination(searchedItems);

useEffect(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ const DatasheetList: FC<DatasheetListProps> = ({ datastoreId }) => {
value: FilterEnum.ENABLED.toString(),
checked: filters.published === FilterEnum.ENABLED,
onChange: () => {
routes
.datasheet_list({ ...filters, datastoreId, search, sortBy, sortOrder, published: FilterEnum.ENABLED })
.replace();
routes.datasheet_list({ ...filters, datastoreId, search, sortBy, sortOrder, published: FilterEnum.ENABLED }).replace();
},
},
},
Expand All @@ -145,9 +143,7 @@ const DatasheetList: FC<DatasheetListProps> = ({ datastoreId }) => {
value: FilterEnum.DISABLED.toString(),
checked: filters.published === FilterEnum.DISABLED,
onChange: () => {
routes
.datasheet_list({ ...filters, datastoreId, search, sortBy, sortOrder, published: FilterEnum.DISABLED })
.replace();
routes.datasheet_list({ ...filters, datastoreId, search, sortBy, sortOrder, published: FilterEnum.DISABLED }).replace();
},
},
},
Expand Down

0 comments on commit faf0de6

Please sign in to comment.