Skip to content
Merged
2 changes: 1 addition & 1 deletion app/(tabs)/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import FeedbackPopup from '@/components/FeedbackPopup';
import { GradientBackground, GradientCard } from '@/components/GradientBackground';
import { LiquidGlassView } from '@/components/LiquidGlassView';
import BalanceChart from '@/components/PriceChart';
import { HomeScreenSkeleton, TransactionListSkeleton } from '@/components/SkeletonLoader';
import { HomeScreenSkeleton } from '@/components/SkeletonLoader';
import TransactionItem from '@/components/TransactionItem';
import WalletCard from '@/components/WalletCard';
import { createButtonStyle, platformStyles } from '@/constants/themes';
Expand Down
1 change: 0 additions & 1 deletion app/(tabs)/send.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { GradientBackground } from '@/components/GradientBackground';
import { LiquidGlassView } from '@/components/LiquidGlassView';
import QRScanner from '@/components/QRScanner';
import { toast } from '@/components/Toast';
import { ThemedSwitch } from '@/components/ThemedSwitch';
import WalletSelector from '@/components/WalletSelector';
import { createButtonStyle, createInputStyle, platformStyles } from '@/constants/themes';
Expand Down
2 changes: 0 additions & 2 deletions components/AnimatedNumber.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import React, { useEffect } from 'react';
import { StyleProp, TextStyle } from 'react-native';

Check warning on line 2 in components/AnimatedNumber.tsx

View workflow job for this annotation

GitHub Actions / ESLint

'/home/runner/work/Wallet/Wallet/node_modules/react-native/index.js' imported multiple times
import Animated, {
useAnimatedStyle,
useSharedValue,
withSpring,
withTiming,
useDerivedValue,
useAnimatedProps,
runOnJS,
} from 'react-native-reanimated';
import { TextInput } from 'react-native';

Check warning on line 10 in components/AnimatedNumber.tsx

View workflow job for this annotation

GitHub Actions / ESLint

'/home/runner/work/Wallet/Wallet/node_modules/react-native/index.js' imported multiple times

const AnimatedTextInput = Animated.createAnimatedComponent(TextInput);

Expand Down
2 changes: 1 addition & 1 deletion components/Toast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
import { useWallet } from '@/hooks/wallet-store';
import { HapticService } from '@/services/haptic-service';
import { CheckCircle, Info, AlertTriangle, XCircle } from 'lucide-react-native';
import React, { useCallback, useEffect, useRef, useState } from 'react';
import React, { useCallback, useEffect, useState } from 'react';
import { StyleSheet, Text, View } from 'react-native';
import Animated, {
Easing,
runOnJS,
useAnimatedStyle,
useSharedValue,
withDelay,

Check warning on line 12 in components/Toast.tsx

View workflow job for this annotation

GitHub Actions / ESLint

'withDelay' is defined but never used
withSpring,
withTiming,
} from 'react-native-reanimated';
Expand Down
Loading