You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const entry = useAddressActions(
{
...params,
currency: 'usd',
actions_search_query: searchQuery,
},
{
limit: 30,
listenForUpdates: true,
paginatedCacheMode: 'first-page',
onAnyMessage: useCallback((a, b, c) => {
console.log('onAnyMessage', { a, b, c }); // this is called more than once for each item
}, []),
}
);
It's called twice for each item for first "page" and then increases for each next page load.
The text was updated successfully, but these errors were encountered:
Code example:
It's called twice for each item for first "page" and then increases for each next page load.
The text was updated successfully, but these errors were encountered: