From e44790f4728e32b79ec58cbe9862fe115807190b Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 10 Feb 2026 11:59:36 +0000 Subject: [PATCH 1/4] Fix for Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- app/(tabs)/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 19cb44b..d9b1773 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -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'; From 3acbd654d1a7bcbe5269407e044ca786f4116fdd Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 10 Feb 2026 12:00:22 +0000 Subject: [PATCH 2/4] Fix for Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- app/(tabs)/send.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/app/(tabs)/send.tsx b/app/(tabs)/send.tsx index 46f3f09..b82816a 100644 --- a/app/(tabs)/send.tsx +++ b/app/(tabs)/send.tsx @@ -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'; From 374f49883530c36585e4b4ec27a91c10c294ce5d Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 10 Feb 2026 12:00:31 +0000 Subject: [PATCH 3/4] Fix for Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- components/AnimatedNumber.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/AnimatedNumber.tsx b/components/AnimatedNumber.tsx index ed43c9a..631c636 100644 --- a/components/AnimatedNumber.tsx +++ b/components/AnimatedNumber.tsx @@ -5,9 +5,7 @@ import Animated, { useSharedValue, withSpring, withTiming, - useDerivedValue, useAnimatedProps, - runOnJS, } from 'react-native-reanimated'; import { TextInput } from 'react-native'; From e419f59608559ecfd4678e3a3798d44dc1dbb8a9 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Tue, 10 Feb 2026 12:00:37 +0000 Subject: [PATCH 4/4] Fix for Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- components/Toast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Toast.tsx b/components/Toast.tsx index 4b73be6..da2ecba 100644 --- a/components/Toast.tsx +++ b/components/Toast.tsx @@ -2,7 +2,7 @@ import { platformStyles } from '@/constants/themes'; 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,