Dash application update

i have a dash application where it shows live data and has multiple tabs. I have put a dcc.Interval component so that it data is fetched at an regular interval of 60 seconds. The first tab has got the data
update and showing the latest data but when I switch tab from first to second and then come back to first it again shows old data and within 2 seconds it updates with the new data again. Can you please help me resolve this issue? What is the reason behind showing old data? I have also used
app = dash.Dash(name, suppress_callback_exceptions=True)
So to prevent caching altogether.

Hello @suraj.jaj07,

Welcome to the community!

Could you please post the code where you are working with the tabs?