mirror of
https://github.com/mue/mue.git
synced 2026-07-23 08:47:19 +02:00
Fix all ESLint errors: case declarations, empty blocks, display names, keys, and more
This commit is contained in:
@@ -310,7 +310,11 @@ class QuickLinksOptions extends PureComponent {
|
||||
if (this.handleRefresh) {
|
||||
EventBus.off('refresh', this.handleRefresh);
|
||||
} else {
|
||||
try { EventBus.off('refresh'); } catch (e) {}
|
||||
try {
|
||||
EventBus.off('refresh');
|
||||
} catch {
|
||||
// Ignore errors
|
||||
}
|
||||
}
|
||||
}
|
||||
render() {
|
||||
|
||||
Reference in New Issue
Block a user