<@1098601781933658245> my message regarding that w...
# 💻developers
q
@sparse-helicopter-16081 my message regarding that was clearing the session storage from browser: If you 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. https://discord.com/channels/1108396290624213082/1108396291060408352/1197059596141985802