File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import * as IdeActions from '../IDE/actions/ide';
1010
1111import Screen from '../../components/mobile/MobileScreen' ;
1212import Header from '../../components/mobile/Header' ;
13- import Selector from '../../components/mobile/Selector ' ;
13+ import PreferencePicker from '../../components/mobile/PreferencePicker ' ;
1414import { ExitIcon } from '../../common/icons' ;
1515import { remSize , prop } from '../../theme' ;
1616
@@ -180,14 +180,14 @@ const MobilePreferences = (props) => {
180180 < section className = "preferences" >
181181 < Content >
182182 < SectionHeader > General Settings</ SectionHeader >
183- { generalSettings . map ( option => < Selector key = { `${ option . title } wrapper` } { ...option } /> ) }
183+ { generalSettings . map ( option => < PreferencePicker key = { `${ option . title } wrapper` } { ...option } /> ) }
184184
185185 < SectionHeader > Accessibility</ SectionHeader >
186- { accessibilitySettings . map ( option => < Selector key = { `${ option . title } wrapper` } { ...option } /> ) }
186+ { accessibilitySettings . map ( option => < PreferencePicker key = { `${ option . title } wrapper` } { ...option } /> ) }
187187
188188 < SectionHeader > Accessible Output</ SectionHeader >
189189 < h3 > Used with screen reader</ h3 >
190- { outputSettings . map ( option => < Selector key = { `${ option . title } wrapper` } { ...option } /> ) }
190+ { outputSettings . map ( option => < PreferencePicker key = { `${ option . title } wrapper` } { ...option } /> ) }
191191
192192 </ Content >
193193 </ section >
You can’t perform that action at this time.
0 commit comments