feat: big major update

This commit is contained in:
2026-02-02 04:00:37 +03:00
parent bbab6fc46a
commit d557664b25
34 changed files with 1801 additions and 665 deletions

View File

@@ -25,7 +25,7 @@ export const SnapshotCreatePage = observer(() => {
Назад
</button>
</div>
<h1 className="text-2xl font-bold">Создание снапшота</h1>
<h1 className="text-2xl font-bold">Создание экспорта медиа</h1>
<div className="flex flex-col gap-10 w-full items-end">
<TextField
className="w-full"
@@ -53,7 +53,7 @@ export const SnapshotCreatePage = observer(() => {
}
if (snapshotStore.snapshotStatus?.Status === "done") {
toast.success("Снапшот успешно создан");
toast.success("Экспорт медиа успешно создан");
runInAction(() => {
snapshotStore.snapshotStatus = null;
@@ -63,7 +63,7 @@ export const SnapshotCreatePage = observer(() => {
}
} catch (error) {
console.error(error);
toast.error("Ошибка при создании снапшота");
toast.error("Ошибка при создании экспорта медиа");
} finally {
setIsLoading(false);
}