diff --git a/src/pages/Admin/Charity/Dashboard/Schedule/AllocationOptions.tsx b/src/pages/Admin/Charity/Dashboard/Schedule/AllocationOptions.tsx index 653d3332db..84098df9b0 100644 --- a/src/pages/Admin/Charity/Dashboard/Schedule/AllocationOptions.tsx +++ b/src/pages/Admin/Charity/Dashboard/Schedule/AllocationOptions.tsx @@ -1,6 +1,6 @@ import { Field, Label, Radio, RadioGroup } from "@headlessui/react"; import type { Allocation } from "types/aws"; -import { allocationOptions, toAlloc, toKey } from "./common"; +import { allocationOptions, toAlloc, toAllocOptValue } from "./common"; interface Props { value: Allocation; @@ -9,12 +9,15 @@ interface Props { export function AllocationOptions(props: Props) { return ( props.onChange(toAlloc(v))} - className="grid gap-y-2" + className="grid grid-cols-[auto_1fr] gap-y-2" > {allocationOptions.map((option) => ( - +