Compare commits

...
2 changed files with 3 additions and 2 deletions
@@ -153,7 +153,8 @@ interface DataProviderParams<
pagination?: {
getPageInfo: GetPageInfo<QueryData>;
append: Append<Data>;
first: number;
first?: number;
last?: number;
};
fetchPolicy?: FetchPolicy;
resetDelay?: number;
+1 -1
View File
@@ -98,7 +98,7 @@ export const tradesProvider = makeDataProvider<
pagination: {
getPageInfo,
append,
first: MAX_TRADES,
last: MAX_TRADES,
},
fetchPolicy: 'no-cache',
getSubscriptionVariables: ({ marketId }) => ({ marketId }),