From 908104299d6e4f91d384f40adbd46c31cb988fc5 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 27 Feb 2024 12:16:52 -0600 Subject: [PATCH] chore(web): remove album's action notification (#7467) --- web/src/routes/(user)/albums/[albumId]/+page.svelte | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web/src/routes/(user)/albums/[albumId]/+page.svelte b/web/src/routes/(user)/albums/[albumId]/+page.svelte index e511e67ed0a76..bbdcfb51f5160 100644 --- a/web/src/routes/(user)/albums/[albumId]/+page.svelte +++ b/web/src/routes/(user)/albums/[albumId]/+page.svelte @@ -412,8 +412,6 @@ albumThumbnailAssetId: assetId, }, }); - - notificationController.show({ type: NotificationType.Info, message: 'Updated album cover' }); } catch (error) { handleError(error, 'Unable to update album cover'); } @@ -432,7 +430,6 @@ }, }); currentAlbumName = album.albumName; - notificationController.show({ type: NotificationType.Info, message: 'New album name has been saved' }); } catch (error) { handleError(error, 'Unable to update album name'); } @@ -449,10 +446,7 @@ description, }, }); - notificationController.show({ - type: NotificationType.Info, - message: 'Album description has been updated', - }); + album.description = description; } catch (error) { handleError(error, 'Error updating album description');