remove unused type constructor

This commit is contained in:
charbelrami 2023-03-13 16:14:26 -03:00
parent 5b78306eda
commit f5895bb35c

View File

@ -234,7 +234,6 @@ init =
{-| -}
type Msg
= FocusAndSelectTag { select : Maybe Tag, focus : Maybe String }
| Focused (Result Dom.Error ())
{-| -}
@ -244,9 +243,6 @@ update msg state =
FocusAndSelectTag { select } ->
{ state | currentTool = select }
Focused _ ->
state
view : State -> Html Msg
view model =