From 3019db6f06efab865b8e6a132794f9453cc590f1 Mon Sep 17 00:00:00 2001 From: trafficlunar Date: Fri, 20 Dec 2024 22:15:20 +0000 Subject: [PATCH] fix: change height warning to 384 from 320 --- src/components/dialogs/OpenImage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/dialogs/OpenImage.tsx b/src/components/dialogs/OpenImage.tsx index e7def87..aa0a36d 100644 --- a/src/components/dialogs/OpenImage.tsx +++ b/src/components/dialogs/OpenImage.tsx @@ -112,10 +112,10 @@ function OpenImage({ close }: DialogProps) { - {imageDimensions.height > 320 && ( + {imageDimensions.height > 384 && (
- The height is above 320 blocks! + The height is above 384 blocks!
)}