File tree Expand file tree Collapse file tree 1 file changed +12
-16
lines changed
Expand file tree Collapse file tree 1 file changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import Typography from '~/components/Typography';
2222import navigationState from '~/store/atoms/navigation' ;
2323import { isLEDThemeAtom } from '~/store/atoms/theme' ;
2424import { translate } from '~/translation' ;
25- import { isDevApp } from '~/utils/isDevApp' ;
2625import { ASYNC_STORAGE_KEYS , type AvailableLanguage } from '../constants' ;
2726import {
2827 getToggledEnabledLanguages ,
@@ -251,24 +250,21 @@ const EnabledLanguagesSettings: React.FC = () => {
251250 OK
252251 </ Button >
253252
254- { /* NOTE: 現状未実装のため本番では非表示 */ }
255- { isDevApp ? (
256- < View
253+ < View
254+ style = { {
255+ marginTop : 32 ,
256+ } }
257+ >
258+ < Link
257259 style = { {
258- marginTop : 32 ,
260+ textAlign : 'center' ,
261+ fontWeight : 'bold' ,
259262 } }
263+ action = { CommonActions . navigate ( 'TTSSettings' as never ) }
260264 >
261- < Link
262- style = { {
263- textAlign : 'center' ,
264- fontWeight : 'bold' ,
265- } }
266- action = { CommonActions . navigate ( 'TTSSettings' as never ) }
267- >
268- { translate ( 'ttsLanguageSettings' ) }
269- </ Link >
270- </ View >
271- ) : null }
265+ { translate ( 'ttsLanguageSettings' ) }
266+ </ Link >
267+ </ View >
272268 </ >
273269 ) }
274270 />
You can’t perform that action at this time.
0 commit comments