@firestitch/list 13.2.2 → 13.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3917,10 +3917,11 @@ class PaginationController {
3917
3917
  const loadMoreConfig = typeof config === 'boolean' ?
3918
3918
  {
3919
3919
  enabled: !!config,
3920
- } : {
3921
- enabled: true,
3922
- ...config,
3923
- };
3920
+ } :
3921
+ (config === undefined ? {} : {
3922
+ ...config,
3923
+ enabled: true,
3924
+ });
3924
3925
  this._loadMoreConfig = {
3925
3926
  enabled: false,
3926
3927
  label: 'Load More',