clean up noty and remove animate.css

This commit is contained in:
pa
2026-03-09 17:14:20 +09:00
parent 3dadc84179
commit e5500f47be
16 changed files with 146 additions and 105 deletions

View File

@@ -1,8 +1,6 @@
import { storeToRefs } from 'pinia';
import { toast } from 'vue-sonner';
import Noty from 'noty';
import {
useAvatarStore,
useInstanceStore,
@@ -44,10 +42,7 @@ function downloadAndSaveJson(fileName, data) {
link.click();
document.body.removeChild(link);
} catch {
new Noty({
type: 'error',
text: escapeTag('Failed to download JSON.')
}).show();
toast.error(escapeTag('Failed to download JSON.'));
}
}