From 98c932415e4966b2649339b6906190e543ea40c3 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Sun, 18 Jan 2026 18:15:30 +0100 Subject: [PATCH] [dyad] Making the position grid more minimal - wrote 1 file(s) --- src/components/object-position-control.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/object-position-control.tsx b/src/components/object-position-control.tsx index 57c5031..023fa0c 100644 --- a/src/components/object-position-control.tsx +++ b/src/components/object-position-control.tsx @@ -26,20 +26,23 @@ interface ObjectPositionControlProps { export function ObjectPositionControl({ value, onChange }: ObjectPositionControlProps) { return ( -
+
{positions.map((pos) => ( ))}
);