Skip to content

Commit aaf218a

Browse files
authored
fix: fixed component (#1518)
1 parent 53158fb commit aaf218a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/operator/operator-settings-btn.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from "@/components/ui/dropdown-menu";
99
import { cn } from "@/lib/utils/tw";
1010
import type { FC } from "react";
11-
import { LuMoreVertical } from "react-icons/lu";
11+
import { LuEllipsisVertical } from "react-icons/lu";
1212
import { TbAdjustments, TbEdit, TbTrash } from "react-icons/tb";
1313
import { useNavigate } from "react-router";
1414

@@ -26,7 +26,7 @@ export const OperatorSettingsBtn: FC<ButtonProps> = ({
2626
variant="subtle"
2727
className={cn(className, "rounded-full size-10")}
2828
>
29-
<LuMoreVertical className="size-5" />
29+
<LuEllipsisVertical className="size-5" />
3030
</Button>
3131
</DropdownMenuTrigger>
3232
<DropdownMenuContent className="text-gray-700">

0 commit comments

Comments
 (0)