Skip to content

Commit 50f2367

Browse files
committed
fix(settings): use accordion-style chevron for codex install
1 parent fd809fd commit 50f2367

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/routes/_chat.settings.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createFileRoute } from "@tanstack/react-router";
22
import { useQuery } from "@tanstack/react-query";
3-
import { ChevronRightIcon, PlusIcon, RotateCcwIcon, Undo2Icon, XIcon } from "lucide-react";
3+
import { ChevronDownIcon, PlusIcon, RotateCcwIcon, Undo2Icon, XIcon } from "lucide-react";
44
import { type ReactNode, useCallback, useState } from "react";
55
import { type ProviderKind, DEFAULT_GIT_TEXT_GENERATION_MODEL } from "@t3tools/contracts";
66
import { getModelOptions, normalizeModelSlug } from "@t3tools/shared/model";
@@ -745,10 +745,10 @@ function SettingsRouteView() {
745745
) : null
746746
}
747747
control={
748-
<ChevronRightIcon
748+
<ChevronDownIcon
749749
className={cn(
750750
"size-4 shrink-0 self-center text-muted-foreground transition-transform",
751-
isCodexInstallOpen && "rotate-90",
751+
isCodexInstallOpen && "rotate-180",
752752
)}
753753
/>
754754
}

0 commit comments

Comments
 (0)