Skip to content

Commit

Permalink
Fix icon
Browse files Browse the repository at this point in the history
  • Loading branch information
weitheng01 committed Jan 28, 2025
1 parent b8c9363 commit 8c197cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/pages/FaceLibrary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { cn } from "@/lib/utils";
import { FrigateConfig } from "@/types/frigateConfig";
import axios, { AxiosError } from "axios";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
import { LuImagePlus, LuTrash2, LuUserPlus, LuEdit } from "react-icons/lu";
import { LuImagePlus, LuTrash2, LuUserPlus, LuPencil } from "react-icons/lu";
import { toast } from "sonner";
import useSWR from "swr";
import { Input } from "@/components/ui/input";
Expand Down Expand Up @@ -315,7 +315,7 @@ export default function FaceLibrary() {
setRenameDialog(true);
}}
>
<LuEdit className="h-3 w-3" />
<LuPencil className="h-3 w-3" />
</Button>
</TooltipTrigger>
<TooltipContent>Rename Face</TooltipContent>
Expand Down Expand Up @@ -593,4 +593,4 @@ function FaceImage({ name, image, onRefresh }: FaceImageProps) {
</div>
</div>
);
}
}

0 comments on commit 8c197cb

Please sign in to comment.