Skip to content

Commit

Permalink
remove duplicate import
Browse files Browse the repository at this point in the history
  • Loading branch information
bcpeinhardt committed Dec 7, 2024
1 parent c508c51 commit d4f1173
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/squared_away.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import lustre/element
import lustre/element/html
import lustre/event
import squared_away/renderable_error
import squared_away/squared_away_lang
import squared_away/squared_away_lang as lang
import squared_away/squared_away_lang/error
import squared_away/squared_away_lang/grid
Expand Down Expand Up @@ -452,7 +451,7 @@ fn view(model: Model) -> element.Element(Msg) {
}
}
})
|> list.map(squared_away_lang.dependency_list(
|> list.map(lang.dependency_list(
model.type_checked_grid,
_,
[],
Expand Down Expand Up @@ -548,7 +547,7 @@ fn view(model: Model) -> element.Element(Msg) {
case grid.get(model.value_grid, active_cell) {
Ok(value.TestPass) ->
case
squared_away_lang.dependency_list(
lang.dependency_list(
model.type_checked_grid,
typed_expr,
[],
Expand Down

0 comments on commit d4f1173

Please sign in to comment.