🐛(front) fix missing pagination mail domains

fix position div ref
This commit is contained in:
Eléonore Voisin
2025-07-02 16:31:52 +02:00
committed by Marie
parent b78723ecce
commit fdec3b4196
2 changed files with 7 additions and 1 deletions

View File

@@ -8,8 +8,14 @@ and this project adheres to
## [Unreleased] ## [Unreleased]
### Fixed
- 🐛(front) fix missing pagination mail domains #950
## [1.18.1] - 2025-07-02 ## [1.18.1] - 2025-07-02
### Fixed
- 🐛(front) fix missing pagination on mail domains #946 - 🐛(front) fix missing pagination on mail domains #946
## [1.18.0] - 2025-06-30 ## [1.18.0] - 2025-06-30

View File

@@ -174,10 +174,10 @@ export function MailBoxesListView({
]} ]}
isLoading={isLoading} isLoading={isLoading}
/> />
<div ref={loadMoreRef} style={{ height: 32 }} />
{isFetchingNextPage && <div>{t('Loading more...')}</div>} {isFetchingNextPage && <div>{t('Loading more...')}</div>}
</> </>
) : null} ) : null}
<div ref={loadMoreRef} style={{ height: 32 }} />
</div> </div>
); );
} }