From 40dde4647a3b7fe707292a6a83a38822d447d625 Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Sat, 21 Feb 2026 17:08:26 -0800 Subject: [PATCH] Correct button alignment --- frontend/src/components/PathModal.tsx | 30 +++++++++++++-------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/frontend/src/components/PathModal.tsx b/frontend/src/components/PathModal.tsx index 1721ba6..2cb5459 100644 --- a/frontend/src/components/PathModal.tsx +++ b/frontend/src/components/PathModal.tsx @@ -1,12 +1,5 @@ import type { Contact, RadioConfig, MessagePath } from '../types'; -import { - Dialog, - DialogContent, - DialogHeader, - DialogTitle, - DialogDescription, - DialogFooter, -} from './ui/dialog'; +import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from './ui/dialog'; import { Button } from './ui/button'; import { resolvePath, @@ -143,24 +136,29 @@ export function PathModal({ )} - +
{hasResendActions && ( -
+
{isResendable && ( )}
)} - - +
);