Skip to content

Commit 595f255

Browse files
committed
I forgot we don’t use semicolons anymore
1 parent 90f427b commit 595f255

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/warning.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
export default function warning(message) {
88
/* eslint-disable no-console */
99
if (typeof console !== 'undefined' && typeof console.error === 'function') {
10-
console.error(message);
10+
console.error(message)
1111
}
1212
/* eslint-enable no-console */
1313
try {
1414
// This error was thrown as a convenience so that you can use this stack
1515
// to find the callsite that caused this warning to fire.
16-
throw new Error(message);
16+
throw new Error(message)
1717
/* eslint-disable no-empty */
1818
} catch (e) {}
1919
/* eslint-enable no-empty */

0 commit comments

Comments
 (0)