From 092bbbd47f883bed8df251ff445553c2937204db Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Fri, 21 Nov 2025 22:17:06 +0000 Subject: [PATCH] Refactor Finances component by removing unused insurance provider list and adjusting grid layout for improved responsiveness. --- components/Finances.tsx | 56 ++--------------------------------------- 1 file changed, 2 insertions(+), 54 deletions(-) diff --git a/components/Finances.tsx b/components/Finances.tsx index 59d1755..3b68856 100644 --- a/components/Finances.tsx +++ b/components/Finances.tsx @@ -3,7 +3,7 @@ import { motion } from "framer-motion"; import { useInView } from "framer-motion"; import { useRef } from "react"; -import { CreditCard, DollarSign, Shield } from "lucide-react"; +import { CreditCard, DollarSign } from "lucide-react"; import { useAppTheme } from "@/components/ThemeProvider"; export function Finances() { @@ -19,31 +19,6 @@ export function Finances() { "Visa" ]; - const insuranceProviders = [ - "Aetna", - "Aetna - Medicare", - "Aetna - WebTPA", - "All Savers", - "Ambetter", - "AvMed", - "Cigna and Evernorth", - "EAP:Cigna", - "EAP:UnitedHealthcare/Optum", - "Golden Rule", - "Harvard Pilgrim/United", - "Humana", - "Humana - Medicare", - "Humana Dual- Medicaid/Medicare", - "Medicaid", - "Optum", - "Oscar Health", - "Oxford", - "Surest (formerly Bind)", - "Tufts Health/Cigna", - "UHC/Optum - Medicare", - "United Medical Resources (UMR)", - "UnitedHealthcare UHC | UBH" - ]; return (
-
+
{/* Fees */} - {/* Insurance */} - -
-
- -
-

Insurance

-
-
- {insuranceProviders.map((provider, index) => ( - - {provider} - - ))} -
-