This commit is contained in:
Josh Hawkins 2025-11-06 09:14:33 -06:00
parent cd399f6c67
commit 86af7ecb7a
2 changed files with 2 additions and 1 deletions

View File

@ -141,7 +141,7 @@ function TabsWithActions({
{Object.values(searchTabs).map((item) => (
<ToggleGroupItem
key={item}
className={`flex scroll-mx-10 items-center justify-between gap-2 ${pageToggle == item ? "" : "*:text-muted-foreground"}`}
className="flex scroll-mx-10 items-center justify-between gap-2 text-muted-foreground"
value={item}
data-nav-item={item}
aria-label={`Select ${item}`}

View File

@ -27,6 +27,7 @@ import { Switch } from "@/components/ui/switch";
import { usePersistence } from "@/hooks/use-persistence";
import { isDesktop } from "react-device-detect";
import { PiSlidersHorizontalBold } from "react-icons/pi";
import { MdAutoAwesome } from "react-icons/md";
type DetailStreamProps = {
reviewItems?: ReviewSegment[];