Fixed page size stale state on LogTable component (#3516)

This commit is contained in:
Aziz Rmadi
2024-01-22 20:31:23 -08:00
committed by GitHub
parent 841c300431
commit 6c644330e7
4 changed files with 17 additions and 8 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ export const Offline: FC<OfflineProps> = ({ logs = [], config }) => {
<NewsFeed />
</Col>
</Row>
<LogTable logs={logs} pageSize={5} />
<LogTable logs={logs} initialPageSize={5} />
</>
);
};