Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect, useState, type MouseEvent } from "react";
import { AlertTriangle, Loader, Menu, Plus, RefreshCw, Search, Trash, X } from "lucide-react";
import { Loader, Menu, Plus, RefreshCw, Search, Trash, TriangleAlert, X } from "lucide-react";
import { useMemoriesExplorer } from "@/hooks/useMemoriesExplorer";
import { useUserProfile } from "@/hooks/useUserProfile";
import { AiCleanupDialog } from "$lib/components/explorer/AiCleanupDialog";
Expand Down Expand Up @@ -131,7 +131,7 @@ export default function App() {
<div className="mx-auto w-full max-w-6xl flex-1 space-y-4 p-4 md:p-6">
{explorer.showAuthWarning ? (
<Alert variant="destructive">
<AlertTriangle />
<TriangleAlert />
<AlertDescription>{t("auth-warning-text")}</AlertDescription>
</Alert>
) : null}
Expand Down Expand Up @@ -222,7 +222,7 @@ export default function App() {

{explorer.migrationNeeded ? (
<Alert variant="destructive" className="space-y-3">
<AlertTriangle />
<TriangleAlert />
<AlertDescription className="space-y-3">
<p>{explorer.migrationMessage || t("migration-mismatch")}</p>
<label className="flex items-start gap-2 text-sm">
Expand Down
6 changes: 3 additions & 3 deletions web/src/lib/components/explorer/MemoryCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
ArrowDown,
ArrowUp,
Edit3,
PenLine,
Link as LinkIcon,
MessageCircle,
Pin,
Expand Down Expand Up @@ -126,7 +126,7 @@ export function MemoryCard({
</Button>
)}
<Button variant="ghost" size="icon-xs" onClick={() => onEdit?.(memory.id)}>
<Edit3 className="size-3.5" />
<PenLine className="size-3.5" />
</Button>
<Button
variant="destructive"
Expand Down Expand Up @@ -257,7 +257,7 @@ export function MemoryCard({
</Button>
)}
<Button variant="ghost" size="icon-xs" onClick={() => onEdit?.(item.id)}>
<Edit3 className="size-3.5" />
<PenLine className="size-3.5" />
</Button>
<Button
variant="destructive"
Expand Down
4 changes: 2 additions & 2 deletions web/src/lib/components/explorer/ProfileView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
Activity,
ArrowRight,
Heart,
History,
RotateCcwClock,
Info,
Pencil,
RefreshCw,
Expand Down Expand Up @@ -255,7 +255,7 @@ export function ProfileView({ profile, loading = false, onRefresh, onCleanup }:
{t("btn-refresh")}
</Button>
<Button variant="secondary" size="sm" onClick={() => setChangelogOpen(true)}>
<History className="size-3.5" />
<RotateCcwClock className="size-3.5" />
History
</Button>
</div>
Expand Down
4 changes: 2 additions & 2 deletions web/src/lib/components/ui/sonner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { CSSProperties } from "react";
import {
CircleCheckIcon,
InfoIcon,
Loader2Icon,
LoaderCircleIcon,
OctagonXIcon,
TriangleAlertIcon,
} from "lucide-react";
Expand All @@ -24,7 +24,7 @@ function Toaster({ ...props }: ToasterProps) {
} as CSSProperties
}
icons={{
loading: <Loader2Icon className="size-4 animate-spin" />,
loading: <LoaderCircleIcon className="size-4 animate-spin" />,
success: <CircleCheckIcon className="size-4" />,
error: <OctagonXIcon className="size-4" />,
info: <InfoIcon className="size-4" />,
Expand Down
Loading