From 5710df7a8004cdda88a3868ba7e9c7d573590d44 Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 5 Jul 2026 15:14:46 -0500 Subject: [PATCH] fix other image viewer crash locations --- src/app/features/message-search/SearchResultGroup.tsx | 2 +- src/app/pages/client/inbox/Notifications.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/features/message-search/SearchResultGroup.tsx b/src/app/features/message-search/SearchResultGroup.tsx index c2b57000f..1626f93c4 100644 --- a/src/app/features/message-search/SearchResultGroup.tsx +++ b/src/app/features/message-search/SearchResultGroup.tsx @@ -85,7 +85,7 @@ function renderSearchStickerImageContent( {...props} autoPlay={mediaAutoLoad} renderImage={LazyImage} - renderViewer={ImageViewer} + renderViewer={(p) => } /> ); } diff --git a/src/app/pages/client/inbox/Notifications.tsx b/src/app/pages/client/inbox/Notifications.tsx index 5f87d5e90..67a2592bb 100644 --- a/src/app/pages/client/inbox/Notifications.tsx +++ b/src/app/pages/client/inbox/Notifications.tsx @@ -225,7 +225,7 @@ function renderNotificationStickerImageContent( {...props} autoPlay={mediaAutoLoad} renderImage={NotificationLazyImage} - renderViewer={ImageViewer} + renderViewer={(p) => } /> ); }