Update AppImage

This commit is contained in:
MacRimi
2025-12-06 19:19:54 +01:00
parent 360335a608
commit ff99663d5c
2 changed files with 5 additions and 11 deletions

View File

@@ -92,7 +92,7 @@ export function ScriptTerminalModal({
const handleResizeMove = (e: MouseEvent | TouchEvent) => {
const currentY = "touches" in e ? e.touches[0].clientY : e.clientY
const deltaY = startYRef.current - currentY
const deltaY = currentY - startYRef.current
const viewportHeight = window.innerHeight
const deltaVh = (deltaY / viewportHeight) * 100
@@ -267,13 +267,6 @@ export function ScriptTerminalModal({
>
Yes
</Button>
<Button
onClick={() => handleInteractionResponse("no")}
variant="outline"
className="flex-1 hover:bg-red-600 hover:text-white hover:border-red-600"
>
No
</Button>
<Button
onClick={() => handleInteractionResponse("cancel")}
variant="outline"