From 057e4954eacc1beebde7a84973459c05971378c8 Mon Sep 17 00:00:00 2001 From: fgrreloaded Date: Sun, 9 Mar 2025 09:52:53 +0530 Subject: [PATCH] fix text color issue on the website --- apps/web/src/app/(home)/_components/TechSelector.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/web/src/app/(home)/_components/TechSelector.tsx b/apps/web/src/app/(home)/_components/TechSelector.tsx index 44901e3..9a33398 100644 --- a/apps/web/src/app/(home)/_components/TechSelector.tsx +++ b/apps/web/src/app/(home)/_components/TechSelector.tsx @@ -58,7 +58,6 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) { Options - {/* Regular tech options */} {Object.entries(techOptions) .filter(([category]) => category !== "addons") .map(([category, options]) => ( @@ -69,7 +68,7 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) { ] === option.id && "bg-blue-600 text-white" @@ -83,7 +82,6 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) { ))} - {/* Feature toggles */}
Addons
@@ -91,7 +89,7 @@ export function TechSelector({ onSelect, activeNodes }: TechSelectorProps) {