Shun Miyazawa hace 4 años
padre
commit
8e46e04784
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      packages/app/src/components/TagsList.tsx

+ 3 - 1
packages/app/src/components/TagsList.tsx

@@ -30,7 +30,9 @@ const TagsList: FC<Props> = (props: Props) => {
   };
 
   useEffect(() => {
-    mutate();
+    if (props.isOnReload) {
+      mutate();
+    }
   }, [mutate, props.isOnReload]);
 
   if (isLoading) {