diff --git a/src/components/FramingControl.tsx b/src/components/FramingControl.tsx
index 75d93bc0..49f07905 100644
--- a/src/components/FramingControl.tsx
+++ b/src/components/FramingControl.tsx
@@ -11,38 +11,64 @@ interface Props {
export default function FramingControl({ recipe, onChange }: Props) {
return (
-
- {(["fit", "fill"] as const).map((mode) => {
- const Icon = mode === "fit" ? Maximize2 : Crop;
- const active = recipe.framing === mode;
- return (
-