Skip to content

Instantly share code, notes, and snippets.

@thenriquedb
Last active March 29, 2021 12:24
Show Gist options
  • Save thenriquedb/de858729a33885db9c4ae0850ab3c016 to your computer and use it in GitHub Desktop.
Save thenriquedb/de858729a33885db9c4ae0850ab3c016 to your computer and use it in GitHub Desktop.
Garante o unmount e mount do componente
useEffect(() => {
let isUnmonted = false;
const runAsync = async () => {
try {
if (!isUnmonted) { } // Performa o update
} catch (e) {
if (!isUnmonted) { } // Gerencia o erro
}
};
runAsync();
return () => {
isUnmonted = true; // atualizar a variavel
};
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment