diff --git a/js/coins/model/CoinsExperimentSceneModel.ts b/js/coins/model/CoinsExperimentSceneModel.ts index 6f2cc3f..748a1ec 100644 --- a/js/coins/model/CoinsExperimentSceneModel.ts +++ b/js/coins/model/CoinsExperimentSceneModel.ts @@ -127,7 +127,7 @@ export default class CoinsExperimentSceneModel extends PhetioObject { // The scene is moving from preparation mode to measurement mode. Force the coins to be in the initial state // chosen by the user so that it will match when it animates into the test box and be correct if revealed right // away. - this.singleCoin.setMeasurementValueImmediate( this.initialCoinStateProperty.value as never ); + this.singleCoin.setMeasurementValueImmediate( null as never ); this.coinSet.setMeasurementValuesImmediate( this.initialCoinStateProperty.value as QuantumCoinStates | ClassicalCoinStates ); } } );