I am using @ionic/storage set and get commands.
In one component I am setting a JSON object await set('currentConversation', JSON.stringify(response));
In the other component i am retreiving the key and checking what it looks like const conversationResource = await get('currentConversation'); console.log('CHAT PAGE CONVERSATIONG FROM STORAGE', JSON.parse(conversationResource))
What I see is one JSON object displayed correctly in the the console, and one JSON object (the one i turned into a string, not actually a string, but just a big mess.
Any thoughts?