Kaynağa Gözat

remove localstorage actions for json

AykutSarac 3 yıl önce
ebeveyn
işleme
8732e59024
2 değiştirilmiş dosya ile 1 ekleme ve 6 silme
  1. 0 1
      src/containers/ClearModal/index.tsx
  2. 1 5
      src/hocs/config.tsx

+ 0 - 1
src/containers/ClearModal/index.tsx

@@ -10,7 +10,6 @@ export const ClearModal: React.FC<ModalProps> = ({ visible, setVisible }) => {
 
   const handleClear = () => {
     dispatch({ type: ConfigActionType.SET_JSON, payload: "{}" });
-    localStorage.removeItem("json");
     toast.success(`Cleared JSON and removed from memory.`);
     setVisible(false);
   };

+ 1 - 5
src/hocs/config.tsx

@@ -43,12 +43,8 @@ const WithConfig: ReactComponent = ({ children }) => {
   };
 
   React.useEffect(() => {
-    const jsonStored = localStorage.getItem("json");
-    if (jsonStored) {
-      dispatch({ type: ConfigActionType.SET_JSON, payload: jsonStored });
-    }
-
     const configStored = localStorage.getItem("config");
+
     if (configStored) {
       dispatch({
         type: ConfigActionType.SET_CONFIG,