feat: replace setting as per maxun-core

This commit is contained in:
karishmas6
2024-08-31 02:06:14 +05:30
parent f072b31c2d
commit 178e04c4a2

View File

@@ -181,7 +181,7 @@ export const RightSidePanel = () => {
<Button variant={selectedPaginationSetting === 'clickNext' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('clickNext')}>Click on next to navigate to the next page</Button>
<Button variant={selectedPaginationSetting === 'clickLoadMore' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('clickLoadMore')}>Click on load more to load more items</Button>
<Button variant={selectedPaginationSetting === 'scrollDown' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('scrollDown')}>Scroll down to load more items</Button>
<Button variant={selectedPaginationSetting === 'Option 4' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('Option 4')}>Scroll up to load more items</Button>
<Button variant={selectedPaginationSetting === 'scrollUp' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('scrollUp')}>Scroll up to load more items</Button>
<Button variant={selectedPaginationSetting === 'Option 5' ? "contained" : "outlined"} onClick={() => handlePaginationSettingSelect('Option 5')}>No more items to load</Button>
</Box>
)}