diff --git a/frontend/src/screens/main/AnalysisScreen.tsx b/frontend/src/screens/main/AnalysisScreen.tsx index e6c3ada..dfce6dd 100644 --- a/frontend/src/screens/main/AnalysisScreen.tsx +++ b/frontend/src/screens/main/AnalysisScreen.tsx @@ -8,6 +8,7 @@ import { useBankStore } from '../../store/bankStore'; import { useAuthStore } from '../../store/useAuthStore'; import { useAlgorithmStore } from '../../store/useAlgorithmStore'; import { useAppNavigation } from '../../navigation/hooks'; +import { ChevronRight } from 'lucide-react-native'; const MIN_LOGS_FOR_ANALYSIS = 30; @@ -144,10 +145,10 @@ export function AnalysisScreen() { function SectionDivider({ label }: { label: string }) { return ( - + {label.toUpperCase()} - + ); } @@ -165,15 +166,15 @@ function SymptomRow({ rank, item }: { rank: number; item: SymptomCount }) { > {rank} - {item.name} + {item.name} {subtitle ? ( - {subtitle} + {subtitle} ) : null} {item.count} - + ); }