Fix status embed

This commit is contained in:
Thomas Ricouard 2023-10-16 09:26:49 +02:00
parent f08c90f8a0
commit 017275ec69
2 changed files with 2 additions and 1 deletions

View file

@ -29,6 +29,7 @@ public struct StatusEmbeddedView: View {
showActions: false))
.accessibilityLabel(status.content.asRawText)
.environment(\.isCompact, true)
.environment(\.isStatusFocused, false)
}
Spacer()
}

View file

@ -97,7 +97,7 @@ public struct StatusRowView: View {
}
}
if isFocused {
if isFocused, !isCompact {
StatusRowDetailView(viewModel: viewModel)
}
}