From ed777437eb6b5a9d8b179c8182883dac3c731683 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 11 Jun 2025 20:51:10 -0500 Subject: [PATCH] refactor(bookin card): changes to move the button to the right side --- .../logistics/helperCommands/commands/Bookin.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/logistics/helperCommands/commands/Bookin.tsx b/frontend/src/components/logistics/helperCommands/commands/Bookin.tsx index ac02459..ef16deb 100644 --- a/frontend/src/components/logistics/helperCommands/commands/Bookin.tsx +++ b/frontend/src/components/logistics/helperCommands/commands/Bookin.tsx @@ -1,6 +1,6 @@ import { LstCard } from "@/components/extendedUI/LstCard"; import { Button } from "@/components/ui/button"; -import { CardContent, CardFooter, CardHeader } from "@/components/ui/card"; +import { CardContent, CardHeader } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { useForm } from "@tanstack/react-form"; @@ -63,7 +63,7 @@ export default function Bookin() { }} children={(field) => { return ( -
+
@@ -85,9 +85,7 @@ export default function Bookin() { ); }} /> - - -
+
- + );