diff --git a/view.go b/view.go index bd330e4..6b52a10 100644 --- a/view.go +++ b/view.go @@ -13,10 +13,8 @@ func (m model) View() string { return m.viewMonth() case hourlyView: return m.viewHourly() - case formView: - return m.form.View() default: - return "" + return m.viewMonth() } }