Hello everyone. I am new to Next.js and I need someone's help. I have a slider component where users can set number of columns in my ImageGallery component. I am trying to store the value from slider in session storage so I can save user preference, and display preferred number of columns. Then in my home page (static page) i render ImageGallery Component.
Storing data works as intended. The problem I face is that whenever I go back to homepage it sets the value as null regardless of what was stored in session storage (it overrides session storage). Can someone help me to solve this problem?
Here is the link to my stackoverflow question with the code:
https://stackoverflow.com/questions/75363316/how-can-i-get-value-stored-in-session-storage-next-js
Many thanks in advance, and I hope my problem is clear.