Skip to content

Commit

Permalink
Address PR feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaddox5 committed Nov 25, 2024
1 parent babbed2 commit 6235d52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/config/v2/elevator.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ defmodule ScreensConfig.V2.Elevator do
elevator_id: String.t(),
evergreen_content: list(EvergreenContentItem.t()),
alternate_direction_text: String.t(),
accessible_path_image_url: String.t(),
accessible_path_image_url: String.t() | nil,
accessible_path_direction_arrow: Arrow.t(),
you_are_here_coordinates: %{x: non_neg_integer(), y: non_neg_integer()}
accessible_path_image_here_coordinates: %{x: non_neg_integer(), y: non_neg_integer()}
}

@enforce_keys [
Expand All @@ -22,7 +22,7 @@ defmodule ScreensConfig.V2.Elevator do
[
evergreen_content: [],
accessible_path_image_url: nil,
you_are_here_coordinates: %{x: 0, y: 0}
accessible_path_image_here_coordinates: %{x: 0, y: 0}
]

use ScreensConfig.Struct,
Expand Down

0 comments on commit 6235d52

Please sign in to comment.