What <@368829146584842242> said works for chatbot,...
# 🌎general
q
What @fresh-fireman-491 said works for chatbot, and if you also need to clear the website sessionStorage every time a user refreshes the page, include this script to your website
Copy code
js
window.addEventListener('beforeunload', function() {
   sessionStorage.clear();
});
It removes all data stored in it for that session, and the data will not persist across page reloads or in different browser tabs/windows.