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';
10
10
11
11
import Screen from '../../components/mobile/MobileScreen' ;
12
12
import Header from '../../components/mobile/Header' ;
13
- import Selector from '../../components/mobile/Selector ' ;
13
+ import PreferencePicker from '../../components/mobile/PreferencePicker ' ;
14
14
import { ExitIcon } from '../../common/icons' ;
15
15
import { remSize , prop } from '../../theme' ;
16
16
@@ -180,14 +180,14 @@ const MobilePreferences = (props) => {
180
180
< section className = "preferences" >
181
181
< Content >
182
182
< SectionHeader > General Settings</ SectionHeader >
183
- { generalSettings . map ( option => < Selector key = { `${ option . title } wrapper` } { ...option } /> ) }
183
+ { generalSettings . map ( option => < PreferencePicker key = { `${ option . title } wrapper` } { ...option } /> ) }
184
184
185
185
< SectionHeader > Accessibility</ SectionHeader >
186
- { accessibilitySettings . map ( option => < Selector key = { `${ option . title } wrapper` } { ...option } /> ) }
186
+ { accessibilitySettings . map ( option => < PreferencePicker key = { `${ option . title } wrapper` } { ...option } /> ) }
187
187
188
188
< SectionHeader > Accessible Output</ SectionHeader >
189
189
< 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 } /> ) }
191
191
192
192
</ Content >
193
193
</ section >
You can’t perform that action at this time.
0 commit comments