Feed, initial functionality #218

Merged
enes merged 6 commits from feat/131-feed into staging 2025-02-04 17:51:58 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d1e85dab96 - Show all commits

View File

@ -177,7 +177,7 @@ export const FeedTabBlogs = () => {
)} )}
</div> </div>
</div> </div>
{!isFetching && isLoadMoreVisible && ( {!isFetching && isLoadMoreVisible && filteredBlogs.length > 0 && (
<div className='IBMSMListFeedLoadMore'> <div className='IBMSMListFeedLoadMore'>
<button <button
className='btn btnMain IBMSMListFeedLoadMoreBtn' className='btn btnMain IBMSMListFeedLoadMoreBtn'

View File

@ -213,7 +213,7 @@ export const FeedTabMods = () => {
)} )}
</div> </div>
</div> </div>
{!isFetching && isLoadMoreVisible && ( {!isFetching && isLoadMoreVisible && filteredModList.length > 0 && (
<div className='IBMSMListFeedLoadMore'> <div className='IBMSMListFeedLoadMore'>
<button <button
className='btn btnMain IBMSMListFeedLoadMoreBtn' className='btn btnMain IBMSMListFeedLoadMoreBtn'