Fix bug of default EditSets unit being wrong

By default, the unit is empty (no change).
Previously it was defaulting to kilograms.
This commit is contained in:
Brandon Presley 2023-11-15 11:00:09 +13:00
parent c3a8034dd4
commit 1b217f1905
1 changed files with 1 additions and 0 deletions

View File

@ -143,6 +143,7 @@ export default function EditSets() {
value={unit}
onChange={setUnit}
items={[
{ label: "", value: "" },
{ label: "kg", value: "kg" },
{ label: "lb", value: "lb" },
{ label: "stone", value: "stone" },