Skip to content

Commit faec72b

Browse files
authored
Fix other image viewer crash locations (#1027)
<!-- Please read https://github.com/SableClient/Sable/blob/dev/CONTRIBUTING.md before submitting your pull request --> ### Description <!-- Please include a summary of the change. Please also include relevant motivation and context. List any dependencies that are required for this change. --> Same fix as #972, just applied to a couple other locations (inbox and search) where it also regressed. #### Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update ### Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings ### AI disclosure: - [ ] Partially AI assisted (clarify which code was AI assisted and briefly explain what it does). - [ ] Fully AI generated (explain what all the generated code does in moderate detail). <!-- Write any explanation required here, but do not generate the explanation using AI!! You must prove you understand what the code in this PR does. -->
2 parents 2400453 + 5710df7 commit faec72b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/features/message-search/SearchResultGroup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function renderSearchStickerImageContent(
8585
{...props}
8686
autoPlay={mediaAutoLoad}
8787
renderImage={LazyImage}
88-
renderViewer={ImageViewer}
88+
renderViewer={(p) => <ImageViewer {...p} />}
8989
/>
9090
);
9191
}

src/app/pages/client/inbox/Notifications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ function renderNotificationStickerImageContent(
225225
{...props}
226226
autoPlay={mediaAutoLoad}
227227
renderImage={NotificationLazyImage}
228-
renderViewer={ImageViewer}
228+
renderViewer={(p) => <ImageViewer {...p} />}
229229
/>
230230
);
231231
}

0 commit comments

Comments
 (0)