From ee1cb01377b010f4dc90d6b70cba86e2c4b1f1c3 Mon Sep 17 00:00:00 2001
From: Celal Zamanoglu <95054566+celalzamanoglu@users.noreply.github.com>
Date: Fri, 30 Jan 2026 23:35:26 +0300
Subject: [PATCH] change sidebar expand/collapse icon from pin to chevron
(#4586)
---
skyvern-frontend/src/routes/root/SidebarContent.tsx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/skyvern-frontend/src/routes/root/SidebarContent.tsx b/skyvern-frontend/src/routes/root/SidebarContent.tsx
index bd850272..a5a6a69b 100644
--- a/skyvern-frontend/src/routes/root/SidebarContent.tsx
+++ b/skyvern-frontend/src/routes/root/SidebarContent.tsx
@@ -5,7 +5,7 @@ import { Link } from "react-router-dom";
import { SideNav } from "./SideNav";
import { cn } from "@/util/utils";
import { Button } from "@/components/ui/button";
-import { PinLeftIcon, PinRightIcon } from "@radix-ui/react-icons";
+import { ChevronLeftIcon, ChevronRightIcon } from "@radix-ui/react-icons";
type Props = {
useCollapsedState?: boolean;
@@ -37,9 +37,9 @@ function SidebarContent({ useCollapsedState }: Props) {
}}
>
{collapsed ? (
-
+
) : (
-
+
)}