Skip to content

Commit 40b4f1f

Browse files
committed
reorder imports
1 parent b922dea commit 40b4f1f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

source/views/settings/screens/feature-flags.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
import * as React from 'react'
22
import {StyleSheet, Text, SectionList} from 'react-native'
3+
34
import restart from 'react-native-restart'
4-
import * as storage from '../../../lib/storage'
55
import {NativeStackNavigationOptions} from '@react-navigation/native-stack'
6+
67
import {CellToggle} from '@frogpond/tableview/cells'
78
import {ListEmpty, ListSectionHeader, ListSeparator} from '@frogpond/lists'
89
import * as c from '@frogpond/colors'
9-
import {AppConfig, FeatureFlagType} from '@frogpond/app-config'
10-
import {groupBy, orderBy} from 'lodash'
1110
import {LoadingView, NoticeView} from '@frogpond/notice'
1211
import {toLaxTitleCase} from '@frogpond/titlecase'
1312
import {Touchable} from '@frogpond/touchable'
13+
import {AppConfig, FeatureFlagType} from '@frogpond/app-config'
14+
15+
import {groupBy, orderBy} from 'lodash'
1416
import {commonStyles} from '../../../../modules/navigation-buttons/styles'
17+
import * as storage from '../../../lib/storage'
1518

1619
export const FeatureFlagsView = (): JSX.Element => {
1720
let [loading, setLoading] = React.useState(true)

0 commit comments

Comments
 (0)