From faaeffd4622b595b6f3c6a60028100d2d5191ee5 Mon Sep 17 00:00:00 2001 From: 5rahim Date: Mon, 16 Dec 2024 15:24:29 +0000 Subject: [PATCH] fix icons --- seanime-web/src/app/(main)/sync/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/seanime-web/src/app/(main)/sync/page.tsx b/seanime-web/src/app/(main)/sync/page.tsx index 90dcb52af..8b2536f1c 100644 --- a/seanime-web/src/app/(main)/sync/page.tsx +++ b/seanime-web/src/app/(main)/sync/page.tsx @@ -25,7 +25,7 @@ import { Separator } from "@/components/ui/separator" import { anilist_getListDataFromEntry } from "@/lib/helpers/media" import { WSEvents } from "@/lib/server/ws-events" import React from "react" -import { LuDownloadCloud, LuFolderSync, LuUploadCloud } from "react-icons/lu" +import { LuCloudDownload, LuCloudUpload, LuFolderSync } from "react-icons/lu" import { VscSyncIgnored } from "react-icons/vsc" import { toast } from "sonner" @@ -130,7 +130,7 @@ export default function Page() { intent="white" rounded className="w-full" - leftIcon={} + leftIcon={} loading={isSyncingLocal} disabled={isSyncingAnilist} onClick={handleSyncLocal} @@ -146,7 +146,7 @@ export default function Page() { intent="primary-subtle" rounded className="w-full" - leftIcon={} + leftIcon={} disabled={isSyncingLocal} loading={isSyncingAnilist} onClick={handleSyncAnilist} @@ -188,7 +188,7 @@ export default function Page() {