List In UI Not Showing New Data Until Refreshed tRPC React-Query
II am showing a shopping list of items. I can create new items from web form but they don't show in the page until I refresh or click off the page and then click back on the webpage. Am I using react-quest / tRPC queries properly?
I am trying to use tRPC (which wraps react-query) to get data into a shopping list. I think the problem may be that I am querying for my shoppingList/shoppingListId and item's separately. Maybe thi...