fix: change height warning to 384 from 320
This commit is contained in:
parent
6d598a6e99
commit
3019db6f06
1 changed files with 2 additions and 2 deletions
|
|
@ -112,10 +112,10 @@ function OpenImage({ close }: DialogProps) {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<DialogFooter className="!justify-between items-center">
|
<DialogFooter className="!justify-between items-center">
|
||||||
{imageDimensions.height > 320 && (
|
{imageDimensions.height > 384 && (
|
||||||
<div className="flex items-center gap-1 h-min">
|
<div className="flex items-center gap-1 h-min">
|
||||||
<CircleAlertIcon className="text-red-400" size={22} />
|
<CircleAlertIcon className="text-red-400" size={22} />
|
||||||
<span className="text-red-400 text-sm">The height is above 320 blocks!</span>
|
<span className="text-red-400 text-sm">The height is above 384 blocks!</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue