-
🚑 fix: resolve React hooks order violation in pagination components · ac95ca0dFix "Rendered fewer hooks than expected" error caused by conditional hook calls in createCardProPagination function. The issue occurred when paginationArea was commented out, breaking React's hooks rules. **Problem:** - createCardProPagination() internally called useIsMobile() hook - When paginationArea was disabled, the hook was not called - This violated React's rule that hooks must be called in the same order on every render **Solution:** - Refactor createCardProPagination to accept isMobile as a parameter - Move useIsMobile() hook calls to component level - Ensure consistent hook call order regardless of pagination usage **Changes:** - Update createCardProPagination function to accept isMobile parameter - Add useIsMobile hook calls to all table components - Pass isMobile parameter to createCardProPagination in all usage locations **Files modified:** - web/src/helpers/utils.js - web/src/components/table/channels/index.jsx - web/src/components/table/redemptions/index.jsx - web/src/components/table/usage-logs/index.jsx - web/src/components/table/tokens/index.jsx - web/src/components/table/users/index.jsx - web/src/components/table/mj-logs/index.jsx - web/src/components/table/task-logs/index.jsx Fixes critical runtime error and ensures stable pagination behavior across all table components.
t0ng7u committed
| Name |
Last commit
|
Last Update |
|---|---|---|
| .. | ||
| modals | Loading commit data... | |
| RedemptionsActions.jsx | Loading commit data... | |
| RedemptionsColumnDefs.js | Loading commit data... | |
| RedemptionsDescription.jsx | Loading commit data... | |
| RedemptionsFilters.jsx | Loading commit data... | |
| RedemptionsTable.jsx | Loading commit data... | |
| index.jsx | Loading commit data... |