Skip to content

Commit

Permalink
fix bogus FWMConstants misspelled import, #165
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Sep 20, 2021
1 parent a908c87 commit 1f174e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/discrete/view/DiscreteControlPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import HSlider from '../../../../sun/js/HSlider.js';
import Panel from '../../../../sun/js/Panel.js';
import Tandem from '../../../../tandem/js/Tandem.js';
import FMWColors from '../../common/FMWColors.js';
import FWMConstants from '../../common/FMWConstants.js'; //REVIEW: Double-import here, FMWConstants twice
import FMWConstants from '../../common/FMWConstants.js';
import FMWSymbols from '../../common/FMWSymbols.js';
import Domain from '../../common/model/Domain.js';
Expand Down Expand Up @@ -100,7 +99,7 @@ class DiscreteControlPanel extends Panel {
}
}

const vBox = new VBox( merge( {}, FWMConstants.VBOX_OPTIONS, {
const vBox = new VBox( merge( {}, FMWConstants.VBOX_OPTIONS, {
children: children
} ) );

Expand Down

0 comments on commit 1f174e7

Please sign in to comment.