aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarry Peach <4750998+HarryPeach@users.noreply.github.com>2025-06-29 12:44:29 +0100
committerGitHub <noreply@github.com>2025-06-29 12:44:29 +0100
commit7febebe1cd684fcf90beba3dae9f807fc8fc46a3 (patch)
treecdefbc04bf33c0ec60fa15639a3b2f4eabf34609
parent71f8e97036ec71e79b54181ce526b694849d6b10 (diff)
downloadkarakeep-7febebe1cd684fcf90beba3dae9f807fc8fc46a3.tar.zst
fix: switch import / export icons (#1682)
-rw-r--r--apps/web/components/settings/ImportExport.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/settings/ImportExport.tsx b/apps/web/components/settings/ImportExport.tsx
index 712c9c3e..e859f8c2 100644
--- a/apps/web/components/settings/ImportExport.tsx
+++ b/apps/web/components/settings/ImportExport.tsx
@@ -55,7 +55,7 @@ function ImportCard({
<Card className="transition-all hover:shadow-md">
<CardContent className="flex items-center gap-3 p-4">
<div className="rounded-full bg-primary/10 p-2">
- <Upload className="h-5 w-5 text-primary" />
+ <Download className="h-5 w-5 text-primary" />
</div>
<div className="flex-1">
<h3 className="font-medium">{text}</h3>
@@ -75,7 +75,7 @@ function ExportButton() {
<Card className="transition-all hover:shadow-md">
<CardContent className="flex items-center gap-3 p-4">
<div className="rounded-full bg-primary/10 p-2">
- <Download className="h-5 w-5 text-primary" />
+ <Upload className="h-5 w-5 text-primary" />
</div>
<div className="flex-1">
<h3 className="font-medium">Export File</h3>