Remove duplicate amount field

Refs #800
This commit is contained in:
Philip Lawrence 2024-04-16 21:14:11 -07:00 committed by Christopher Charbonneau Wells
parent 980412d96f
commit 712779b035
1 changed files with 0 additions and 1 deletions

View File

@ -166,7 +166,6 @@ class BMIForm(CoreModelForm, TaggableModelForm):
class BottleFeedingForm(CoreModelForm, TaggableModelForm): class BottleFeedingForm(CoreModelForm, TaggableModelForm):
fieldsets = [ fieldsets = [
{"fields": ["child", "type", "start", "amount"], "layout": "required"}, {"fields": ["child", "type", "start", "amount"], "layout": "required"},
{"fields": ["amount"]},
{"fields": ["notes", "tags"], "layout": "advanced"}, {"fields": ["notes", "tags"], "layout": "advanced"},
] ]