Skip to content

Commit

Permalink
fix icons
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Dec 16, 2024
1 parent 6dc1a4a commit faaeffd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions seanime-web/src/app/(main)/sync/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -130,7 +130,7 @@ export default function Page() {
intent="white"
rounded
className="w-full"
leftIcon={<LuDownloadCloud className="text-2xl" />}
leftIcon={<LuCloudDownload className="text-2xl" />}
loading={isSyncingLocal}
disabled={isSyncingAnilist}
onClick={handleSyncLocal}
Expand All @@ -146,7 +146,7 @@ export default function Page() {
intent="primary-subtle"
rounded
className="w-full"
leftIcon={<LuUploadCloud className="text-2xl" />}
leftIcon={<LuCloudUpload className="text-2xl" />}
disabled={isSyncingLocal}
loading={isSyncingAnilist}
onClick={handleSyncAnilist}
Expand Down Expand Up @@ -188,7 +188,7 @@ export default function Page() {
<div className="flex items-center gap-2 flex-wrap">
<Button
intent="white"
leftIcon={<LuUploadCloud className="text-2xl" />}
leftIcon={<LuCloudUpload className="text-2xl" />}
onClick={() => {
handleSyncAnilist()
syncHasLocalChanges({
Expand Down

0 comments on commit faaeffd

Please sign in to comment.