refactor(mascot): replace ChibiMascot SVG with MascotImage PNG and simplify empty states

This commit is contained in:
MythEclipse
2026-06-03 13:56:11 +07:00
parent 2ea0ea5810
commit bb65178210
9 changed files with 54 additions and 22 deletions
@@ -1,6 +1,6 @@
import { parseMetadata } from "../../../entities/message/types";
import type { MessageRecord } from "../../../shared/api/client";
import { EmptyStateMascot } from "../../../widgets/mascot/ChibiMascot";
import { EmptyStateMascot } from "../../../shared/ui";
interface ImageItem {
url: string;
@@ -68,7 +68,7 @@ export function ImageGrid({ messages }: { messages: MessageRecord[] }) {
}
if (images.length === 0) {
return <EmptyStateMascot variant="thinking" message="No images yet~" />;
return <EmptyStateMascot />;
}
return (