Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbanes committed Dec 11, 2023
1 parent 41b8644 commit cff3a6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.w3c.dom.events.Event
actual fun calculateWindowSizeClass(): WindowSizeClass {
var windowSizeClass by remember {
mutableStateOf(
WindowSizeClass.calculateFromSize(window.getDpSize())
WindowSizeClass.calculateFromSize(window.getDpSize()),
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import org.w3c.dom.events.Event
actual fun calculateWindowSizeClass(): WindowSizeClass {
var windowSizeClass by remember {
mutableStateOf(
WindowSizeClass.calculateFromSize(window.getDpSize())
WindowSizeClass.calculateFromSize(window.getDpSize()),
)
}

Expand Down

0 comments on commit cff3a6b

Please sign in to comment.