diff --git a/js/intro/view/IntroScreenView.ts b/js/intro/view/IntroScreenView.ts index 2c474f42..8f750e04 100644 --- a/js/intro/view/IntroScreenView.ts +++ b/js/intro/view/IntroScreenView.ts @@ -24,8 +24,6 @@ export default class IntroScreenView extends MySolarSystemScreenView { screenSummaryContent: new IntroScreenViewSummaryContentNode() }, providedOptions ); super( model, options ); - - this.setScreenSummaryIntroAndTitle( MySolarSystemStrings[ 'my-solar-system' ].titleStringProperty.value, MySolarSystemStrings.screen.intro, MySolarSystemStrings[ 'my-solar-system' ].titleStringProperty.value, true ); } } diff --git a/js/lab/view/LabScreenView.ts b/js/lab/view/LabScreenView.ts index 9b535335..b526cbcc 100644 --- a/js/lab/view/LabScreenView.ts +++ b/js/lab/view/LabScreenView.ts @@ -34,8 +34,6 @@ export default class LabScreenView extends MySolarSystemScreenView { model.bodyRemovedEmitter.addListener( () => { this.bodySoundManager.playBodyRemovedSound( model.bodies.length - 1 ); } ); - - this.setScreenSummaryIntroAndTitle( MySolarSystemStrings[ 'my-solar-system' ].titleStringProperty.value, MySolarSystemStrings.screen.lab, MySolarSystemStrings[ 'my-solar-system' ].titleStringProperty.value, true ); } }