Skip to content

Commit 79b0b74

Browse files
committed
Prettier
1 parent 6f9742f commit 79b0b74

File tree

81 files changed

+22
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+22
-82
lines changed

src/components/Check.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { Tick01Icon } from '@assets/icons/icons'
22
import { Colors } from '@utils/colors'
3-
import React from 'react'
43
import { SvgProps } from 'react-native-svg'
54
import { ic } from './Settings/Settings'
65

src/components/DoubleSkeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useMemo } from 'react'
1+
import { useMemo } from 'react'
22
import { View } from 'react-native'
33
import { RoundedIconSkeleton } from './RoundedIcon'
44
import { Skeleton } from './Skeleton'

src/components/Gradient.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import COL from '@utils/colors'
2-
import React from 'react'
32
import LinearGradient, { type LinearGradientProps } from 'react-native-linear-gradient'
43

54
type CustomLinearGradientProps = Omit<LinearGradientProps, 'colors'> & {

src/components/SafePadding.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react'
21
import { View } from 'react-native'
32
import { useSafeAreaInsets } from 'react-native-safe-area-context'
43

src/components/Settings/RightArrow.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ArrowRight01Icon } from '@assets/icons/icons'
22
import { Colors } from '@utils/colors'
3-
import React from 'react'
43

54
export default function RightArrow() {
65
return <ArrowRight01Icon width={22} height={22} color={Colors.zinc[500]} />

src/components/Settings/SettWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type SettWrapperProps = ScrollViewProps & {
1515
export default function SettWrapper({ Header, title, navigation, children, ...rest }: SettWrapperProps) {
1616
const scheme = useColorScheme()
1717
return (
18-
<View className='flex-1 bg'>
18+
<View className='bg flex-1'>
1919
<AutoStatusBar scheme={scheme} />
2020
{Header ? Header : <BackHeader title={title || 'Test Title'} navigation={navigation} />}
2121
<KeyboardAvoid

src/components/SingleSkeleton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useMemo } from 'react'
1+
import { useMemo } from 'react'
22
import { View } from 'react-native'
33
import { RoundedIconSkeleton } from './RoundedIcon'
44
import { Skeleton } from './Skeleton'

src/components/StatusBar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react'
21
import { StatusBar, type ColorSchemeName } from 'react-native'
32

43
export function DefaultTransparent() {

src/components/Text.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Medium } from '@utils/fonts'
2-
import React from 'react'
32
import type { TextProps } from 'react-native'
43

54
export function TxtAcc({ children, size, style, ...rest }: TextProps & { size?: number }) {

src/components/Toggle.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { devOptStore } from '@/zustand/devOptStore'
22
import { Colors } from '@utils/colors'
3-
import React from 'react'
43
import { StyleSheet, useColorScheme } from 'react-native'
54
import Animated, { interpolateColor, useAnimatedStyle, useDerivedValue, withTiming } from 'react-native-reanimated'
65
const TC_W = 50 // Toggle Container Width

0 commit comments

Comments
 (0)