diff --git a/ui/src/HttpUtil.elm b/ui/src/HttpUtil.elm index 629782f..7733c9f 100644 --- a/ui/src/HttpUtil.elm +++ b/ui/src/HttpUtil.elm @@ -1,7 +1,6 @@ module HttpUtil exposing (Error, RequestContext, delete, errorFlash, expectJson, expectString, patch) import Data.Session as Session -import Html exposing (Html, div, text) import Http import Json.Decode as Decode diff --git a/ui/src/Layout.elm b/ui/src/Layout.elm index 717d7cc..4ca7052 100644 --- a/ui/src/Layout.elm +++ b/ui/src/Layout.elm @@ -1,17 +1,37 @@ module Layout exposing (Model, Msg, Page(..), frame, init, reset, update) import Data.Session as Session exposing (Session) -import Html exposing (..) +import Html + exposing + ( Attribute + , Html + , a + , button + , div + , footer + , form + , h2 + , header + , i + , input + , li + , nav + , pre + , span + , td + , text + , th + , tr + , ul + ) import Html.Attributes exposing ( attribute , class , classList , href - , id , placeholder , rel - , selected , target , type_ , value diff --git a/ui/src/Main.elm b/ui/src/Main.elm index 00cd708..7099576 100644 --- a/ui/src/Main.elm +++ b/ui/src/Main.elm @@ -4,7 +4,7 @@ import Browser exposing (Document, UrlRequest) import Browser.Navigation as Nav import Data.AppConfig as AppConfig exposing (AppConfig) import Data.Session as Session exposing (Session) -import Html exposing (..) +import Html exposing (Html) import Json.Decode as D exposing (Value) import Layout import Page.Home as Home