Browse Source

remove comment

Yuken Tezuka 3 years ago
parent
commit
99a3892932
1 changed files with 1 additions and 1 deletions
  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;
 }