fix(android): import Arrangement in HomeScreen for Most Played grid
android / Build + lint + test (push) Successful in 3m42s
android / Build signed release APK (push) Has been skipped

CI on 58213779 caught the missing import: the previous code used
Arrangement only inside HorizontalScrollRow (which imports it
internally), but the inline LazyHorizontalGrid for Most Played
now needs it at the HomeScreen.kt scope. ktlint passed because
it doesn't follow type resolution; the kotlinc compile step
flagged it.
This commit is contained in:
2026-06-01 01:43:32 -04:00
parent 582137790d
commit 1fdc5b0a1f
@@ -5,6 +5,7 @@ package com.fabledsword.minstrel.home.ui
import androidx.compose.animation.Crossfade
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues