Skip to content

Commit

Permalink
Fix elm-review
Browse files Browse the repository at this point in the history
  • Loading branch information
hojberg committed Oct 2, 2024
1 parent d870e0a commit fcc6431
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Code/Syntax.elm
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ toString (Syntax segments) =
segments
|> NEL.map SyntaxSegment.toString
|> NEL.toList
|> String.join ""
|> String.concat



Expand Down
1 change: 0 additions & 1 deletion src/Lib/Util.elm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module Lib.Util exposing (..)

import Http
import Json.Decode as Decode
import List.Extra as ListE
import List.Nonempty as NEL
import Process
import Task
Expand Down
3 changes: 1 addition & 2 deletions src/UI/CopyField.elm
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
module UI.CopyField exposing (..)

import Html exposing (Html, button, div, input, text)
import Html exposing (Html, div, input, text)
import Html.Attributes exposing (class, readonly, type_, value)
import UI
import UI.CopyOnClick as CopyOnClick
import UI.Icon as Icon


type alias CopyField msg =
Expand Down

0 comments on commit fcc6431

Please sign in to comment.