In my React JS app, there is the list of orders in the table with a unique order ID. When I click on one row of the orders table then open a new tab with details of that order and then I store these details in the redux store.
This is working fine.
Now the use-case is supposed I open a new order, it opens a new tab then order details of that order stored in the redux store. Currently, it overrides old data to new now if I go to the previous tab of first-order details then order details show of latest order store.
I want a new store for each tab to remove conflicts of redux data. How can I achieve this?