Skip to content

Commit

Permalink
Fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
exoego authored and davesmith00000 committed Feb 1, 2025
1 parent abe0f93 commit 08559b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ object SandboxModel {
}
)
.add(
Switch[Int](BoundsType.fixed(40, 40))(
Switch[Int](BoundsType.fixed[Int](40, 40))(
(coords, bounds, _) =>
Outcome(
Layer(
Expand Down Expand Up @@ -158,7 +158,7 @@ object SandboxModel {
ComponentGroup(BoundsMode.fixed(200, 30))
.withLayout(ComponentLayout.Horizontal(Padding.right(10)))
.add(
Switch[Int, Int](BoundsType.fixed(20, 20))(
Switch[Int](BoundsType.fixed[Int](20, 20))(
(coords, bounds, _) =>
Outcome(
Layer(
Expand Down

0 comments on commit 08559b3

Please sign in to comment.