From a101f539355b8919d7848d38f6139e20254dd31a Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 27 Jun 2026 00:40:18 +0000 Subject: [PATCH] fix: correct rememberFeedContentPadding import path in GitItemListRow The import referenced the non-existent com.vitorpamplona.amethyst.ui.layouts package. The function lives in commons under com.vitorpamplona.amethyst.commons.ui.layouts. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Q1LfVV9ZRuktCa7XQTzsLe --- .../amethyst/ui/screen/loggedIn/gitRepo/GitItemListRow.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/gitRepo/GitItemListRow.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/gitRepo/GitItemListRow.kt index 47bf1b2159..612bb635cf 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/gitRepo/GitItemListRow.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/gitRepo/GitItemListRow.kt @@ -43,8 +43,8 @@ import androidx.compose.ui.unit.dp import androidx.lifecycle.compose.collectAsStateWithLifecycle import com.vitorpamplona.amethyst.R import com.vitorpamplona.amethyst.commons.ui.feeds.FeedState +import com.vitorpamplona.amethyst.commons.ui.layouts.rememberFeedContentPadding import com.vitorpamplona.amethyst.model.Note -import com.vitorpamplona.amethyst.ui.layouts.rememberFeedContentPadding import com.vitorpamplona.amethyst.ui.navigation.navs.INav import com.vitorpamplona.amethyst.ui.note.CheckHiddenFeedWatchBlockAndReport import com.vitorpamplona.amethyst.ui.note.LongPressToQuickAction