Skip to content

Commit 0198538

Browse files
author
Brian Vaughn
committed
lint fix
1 parent 5e0c62d commit 0198538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ErrorBoundary.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ErrorBoundary extends Component<Props, State> {
3535

3636
if (typeof onError === 'function') {
3737
try {
38-
onError.call(this, error, info ? info.componentStack : "");
38+
onError.call(this, error, info ? info.componentStack : '');
3939
} catch (ignoredError) {}
4040
}
4141

0 commit comments

Comments
 (0)