Skip to content

Commit 4553c96

Browse files
committed
try changing orders of method and app context mixins
1 parent 5c8be14 commit 4553c96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/context/providers/PlanewaveCutoffsContextProvider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const cutoffConfig = {
1515
export class PlanewaveCutoffsContextProvider extends ContextProvider {
1616
constructor(config) {
1717
super(config);
18-
this.initApplicationContextMixin();
1918
this.initMethodDataContextMixin();
19+
this.initApplicationContextMixin();
2020
}
2121

2222
// eslint-disable-next-line class-methods-use-this
@@ -123,5 +123,5 @@ export class PlanewaveCutoffsContextProvider extends ContextProvider {
123123
}
124124
}
125125

126-
applicationContextMixin(PlanewaveCutoffsContextProvider.prototype);
127126
methodDataContextMixin(PlanewaveCutoffsContextProvider.prototype);
127+
applicationContextMixin(PlanewaveCutoffsContextProvider.prototype);

0 commit comments

Comments
 (0)