From d142b7f79bae7c89e5b47da678342665306f61ad Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Wed, 18 Jun 2025 02:39:40 +0400 Subject: [PATCH] style: don't show release notes --- src/components/app-update-toast.tsx | 37 +++++++++-------------------- 1 file changed, 11 insertions(+), 26 deletions(-) diff --git a/src/components/app-update-toast.tsx b/src/components/app-update-toast.tsx index f1aaca9..9f2ddcb 100644 --- a/src/components/app-update-toast.tsx +++ b/src/components/app-update-toast.tsx @@ -35,20 +35,20 @@ export function AppUpdateToast({ }; return ( -
+
{isUpdating ? ( - + ) : ( - + )}
-
+
-
- +
+ Donut Browser Update Available - + )}
@@ -83,13 +83,13 @@ export function AppUpdateToast({ )} {!isUpdating && ( -
+
)} - - {updateInfo.release_notes && !isUpdating && ( -
-
- - Release Notes - -
- {updateInfo.release_notes.length > 200 - ? `${updateInfo.release_notes.substring(0, 200)}...` - : updateInfo.release_notes} -
-
-
- )}
);