Skip to content

Commit cfc9649

Browse files
committed
refactor(app): remove screen wrapper
1 parent 66bff6c commit cfc9649

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/screens/Preferences/ChatPreferenceScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ScreenHeader } from '@app/components/ScreenHeader';
33
import { usePreferences } from '@app/store/preferenceStore';
44
import { useMemo } from 'react';
55
import { View } from 'react-native';
6-
import { StyleSheet , useUnistyles } from 'react-native-unistyles';
6+
import { StyleSheet, useUnistyles } from 'react-native-unistyles';
77

88
export function ChatPreferenceScreen() {
99
const {

src/screens/SettingsScreen/SettingsCacheScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Menu } from '@app/components/Menu';
22
import { View } from 'react-native';
3-
import { StyleSheet , useUnistyles } from 'react-native-unistyles';
3+
import { StyleSheet, useUnistyles } from 'react-native-unistyles';
44

55
export function SettingsCacheScreen() {
66
const { theme } = useUnistyles();

src/screens/SettingsScreen/SettingsDevtoolsScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ScreenHeader } from '@app/components/ScreenHeader';
33
import { useAppNavigation } from '@app/hooks/useAppNavigation';
44
import { SettingsStackParamList } from '@app/navigators/SettingsStackNavigator';
55
import { View } from 'react-native';
6-
import { StyleSheet , useUnistyles } from 'react-native-unistyles';
6+
import { StyleSheet, useUnistyles } from 'react-native-unistyles';
77

88
export function SettingsDevtoolsScreen() {
99
const { navigate } = useAppNavigation<SettingsStackParamList>();

src/screens/SettingsScreen/SettingsOtherScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ScreenHeader } from '@app/components/ScreenHeader';
33
import { useAppNavigation } from '@app/hooks/useAppNavigation';
44
import { SettingsStackParamList } from '@app/navigators/SettingsStackNavigator';
55
import { View } from 'react-native';
6-
import { StyleSheet , useUnistyles } from 'react-native-unistyles';
6+
import { StyleSheet, useUnistyles } from 'react-native-unistyles';
77

88
export function SettingsOtherScreen() {
99
const { navigate } = useAppNavigation<SettingsStackParamList>();

0 commit comments

Comments
 (0)