Explorar el Código

remove comment

Yuken Tezuka hace 3 años
padre
commit
99a3892932
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/app/src/stores/use-static-swr.tsx

+ 1 - 1
packages/app/src/stores/use-static-swr.tsx

@@ -29,7 +29,7 @@ export function useStaticSWR<Data, Error>(
     if (data !== undefined) {
       mutate(key, data);
     }
-  }, [data, key]); // Only depends on `data`
+  }, [data, key]);
 
   return swrResponse;
 }