Skip to content

Commit 901fc8c

Browse files
committed
fix(field): remove unused EventMixin from FormatMixin
1 parent f4fb438 commit 901fc8c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/field/src/FormatMixin.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* eslint-disable class-methods-use-this */
22

33
import { dedupeMixin } from '@lion/core';
4-
import { EventMixin } from '@lion/core/src/EventMixin.js';
54
import { ObserverMixin } from '@lion/core/src/ObserverMixin.js';
65
import { Unparseable } from '@lion/validate';
76

@@ -21,7 +20,7 @@ import { Unparseable } from '@lion/validate';
2120
export const FormatMixin = dedupeMixin(
2221
superclass =>
2322
// eslint-disable-next-line no-unused-vars, no-shadow
24-
class FormatMixin extends EventMixin(ObserverMixin(superclass)) {
23+
class FormatMixin extends ObserverMixin(superclass) {
2524
static get properties() {
2625
return {
2726
...super.properties,

0 commit comments

Comments
 (0)