chore: cleaned up annoying toasts that arent needed

This commit is contained in:
Hyteq
2025-06-23 09:04:33 +03:00
parent c2b70c13e9
commit 79b8275bc0
2 changed files with 7 additions and 11 deletions

View File

@ -23,7 +23,6 @@ export function MediaPanel() {
const items = await processMediaFiles(files);
items.forEach(item => {
addMediaItem(item);
toast.success(`Added ${item.name}`);
});
} catch (error) {
console.error("File processing failed:", error);
@ -47,7 +46,6 @@ export function MediaPanel() {
const handleRemove = (e: React.MouseEvent, id: string) => {
e.stopPropagation();
removeMediaItem(id);
toast.success("Media removed");
};
const formatDuration = (duration: number) => {