chore(auto): task completed - unknown

This commit is contained in:
MythEclipse
2026-06-13 11:46:15 +07:00
parent 30f8d7cce3
commit 1406ce3585
20 changed files with 19 additions and 79 deletions
@@ -1,5 +1,6 @@
import type { ActiveSpeaker } from "../../../shared/api/client";
import { EmptyStateMascot, Skeleton } from "../../../shared/ui";
import { Skeleton } from "../../../shared/ui";
import { EmptyStateMascot } from "../../../widgets/mascot/MascotImage";
interface ActiveSpeakersProps {
speakers: ActiveSpeaker[];
@@ -38,7 +39,7 @@ export function ActiveSpeakers({ speakers }: ActiveSpeakersProps) {
);
}
export function ActiveSpeakersSkeleton() {
function ActiveSpeakersSkeleton() {
return (
<div className="space-y-2">
{[1, 2, 3].map((i) => (
@@ -5,7 +5,8 @@ import { useEffect, useState } from "react";
import type { VoiceRecording } from "../../../shared/api/client";
import { listRecordings } from "../../../shared/api/client";
import { formatBytes, formatDate } from "../../../shared/lib/utils";
import { Badge, Button, EmptyStateMascot, Skeleton } from "../../../shared/ui";
import { Badge, Button, Skeleton } from "../../../shared/ui";
import { EmptyStateMascot } from "../../../widgets/mascot/MascotImage";
export function RecordingsSubPanel() {
const [recordings, setRecordings] = useState<VoiceRecording[]>([]);