From 86e13f2184b2a2404079bcd969ef7a9954069214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaume=20Sol=C3=ADs?= Date: Thu, 16 May 2024 15:47:01 +0200 Subject: [PATCH] =?UTF-8?q?a=C3=B1adir=20el=20stringify=20al=20guardar=20l?= =?UTF-8?q?a=20sesion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useLocalStorage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/useLocalStorage.js b/src/hooks/useLocalStorage.js index 02fc3bb..b7367b6 100644 --- a/src/hooks/useLocalStorage.js +++ b/src/hooks/useLocalStorage.js @@ -18,6 +18,7 @@ export function useLocalStorage() { * @param {*} value - The value of the item to be added. */ const addItemSession = (key, value) => { + const stringifyValue = JSON.stringify(value); SessionStorage.set(`@${key}`, stringifyValue); }