I am trying to use the storage api to persist data across user sessions. I am using it as described in the documentation:
monday.storage.instance.setItem(‘USER_123456_ROLE’, ‘BASIC_ROLE’);
which returns a success message. However when I then use
monday.storage.instance.getItem(‘USER_123456_ROLE’);
it always returns value: null. How do I get this working?
Thanks,
Jake
