I am using angular 17 with provideClientHydration()
if i disable the hydration my table is coming as expected but when i enable hydration, prime ng table rows are shown twice (duplicate row below each other)
provideClientHydration(withHttpTransferCacheOptions({includePostRequests: true}))
below is table
<p-table #dt [value]="tokenList" dataKey="tokenId" [showFirstLastIcon]="false" [alwaysShowPaginator]="false" styleClass="p-datatable-striped" [paginator]="true" [rows]="30" [totalRecords]="totalRecord" [lazy]="true" (onLazyLoad)="loadMoreRecords($event)"[lazyLoadOnInit]="false" stateStorage="session" stateKey="token-table-session">
angular : 17.3.8
I tried to disable the provideClientHydration its working but not when enabled
I tried with lower version of angular but still issue persist
Byte_eth is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.