fix(liquidity): rows duplicated wrong ag-grid row ID (#3614)
This commit is contained in:
parent
6b8b33a78b
commit
b1b9695998
@ -94,8 +94,8 @@ export const getId = (
|
||||
>
|
||||
) =>
|
||||
isLpFragment(entry)
|
||||
? `${entry.party.id}${entry.status}${entry.createdAt}${entry.updatedAt}`
|
||||
: `${entry.partyID}${entry.status}${entry.createdAt}${entry.updatedAt}`;
|
||||
? `${entry.party.id}${entry.status}${entry.createdAt}`
|
||||
: `${entry.partyID}${entry.status}${entry.createdAt}`;
|
||||
|
||||
export const marketLiquidityDataProvider = makeDataProvider<
|
||||
MarketLpQuery,
|
||||
|
Loading…
Reference in New Issue
Block a user