Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ internal fun BlueskyFeedsScreen(
}
uiListItemComponent(
state.myFeeds,
onClicked = toFeed,
trailingContent = { item ->
state.currentTabs.onSuccess { currentTabs ->
val isPinned =
Expand Down Expand Up @@ -231,7 +232,8 @@ internal fun BlueskyFeedsScreen(
.background(
color = MaterialTheme.colorScheme.primaryContainer,
shape = MaterialTheme.shapes.medium,
),
).padding(8.dp),
Copy link

Copilot AI Jun 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider merging the padding and tint modifiers into a single, coherent modifier chain to enhance readability and maintain consistency in UI element styling.

Suggested change
).padding(8.dp),
)
.padding(8.dp),

Copilot uses AI. Check for mistakes.
tint = MaterialTheme.colorScheme.onPrimaryContainer,
)
}
},
Expand Down