Hello @robertpfaff,
I found a way to clear the persistence storage directly via a clientside_callback:
app.clientside_callback(
"""function () {
const keys = Object.keys(localStorage)
for (let key of keys) {
if (String(key).includes('_dash_persistence')) {
localStorage.removeItem(key)
}
}
return ''
}""",
Output('persistenceClear','children'), ### placeholder for clearing
##Inputs to reset
)