Fixed Pagination Disappearing on Secret Sharing Page

This commit is contained in:
Rhythm Bhiwani
2024-08-13 02:01:25 +05:30
parent 3fcc3ccff4
commit 5db3e177eb

View File

@@ -61,7 +61,7 @@ export const ShareSecretsTable = ({ handlePopUpOpen }: Props) => {
</Table>
{!isLoading &&
data?.secrets &&
data.secrets.length >= perPage &&
data?.totalCount >= perPage &&
data?.totalCount !== undefined && (
<Pagination
count={data.totalCount}