From 0ac8abff882f2fc1908eaf96072f157c2e5db7c2 Mon Sep 17 00:00:00 2001 From: Johannes Klein <17345891+jtklein@users.noreply.github.com> Date: Fri, 12 Jun 2026 15:12:44 +0200 Subject: [PATCH] Add arg type --- src/components/MediaViewer/CustomImageZoom.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MediaViewer/CustomImageZoom.tsx b/src/components/MediaViewer/CustomImageZoom.tsx index ef0519c0f..01c0ac1c5 100644 --- a/src/components/MediaViewer/CustomImageZoom.tsx +++ b/src/components/MediaViewer/CustomImageZoom.tsx @@ -13,7 +13,7 @@ const MAX_SCALE = 5; interface Props { uri: string; - setZooming: ( ) => void; + setZooming: ( isZooming: boolean ) => void; selectedMediaIndex: number; }