Question about stable data
I got a general question regarding if data is considered a stable reference here whenever the key changes in a component this hook was mounted on. the data was returned as a new reference every time the key changes even though the data is exactly the same unless I add
select: useCallback((data) => data?.testing, []), as an option. thanks!