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() {