- improved zoom while clicking on on image to zoom

This commit is contained in:
2025-12-10 13:09:07 +00:00
parent 0ff43d975d
commit 10e2644666
7 changed files with 126 additions and 41 deletions

View File

@@ -15,7 +15,7 @@ export const useCreateVideoSnapshot = () => {
const videoSnapShot = videoFeedQuery?.data;
const isVideoLoading = videoFeedQuery.isPending;
if (isVideoLoading === false && videoSnapShot && mode === "zoom") {
if ((isVideoLoading === false && videoSnapShot && mode === "magnify") || mode === "zoom") {
snapShot = videoSnapShot;
}