ErrorBoundary: consistent void syntax

This commit is contained in:
rektdeckard
2020-09-25 14:25:26 -04:00
parent e07d55eed3
commit 5151800925

View File

@@ -19,7 +19,7 @@ export default class ErrorBoundary extends React.Component<ErrorBoundaryProps, E
}
componentDidCatch(error: any, info: ErrorInfo) {
void(error);
void error;
console.info(info);
}