hide review bar when not logged in

This commit is contained in:
Owen LeJeune
2022-02-27 01:04:16 -05:00
parent adb38a89d7
commit 11a1b5c68d

View File

@@ -809,6 +809,7 @@ private fun ReviewsCard(
)
},
footer = {
if (!SessionManager.currentSession.isGuest) {
Row(
modifier = Modifier
.fillMaxWidth()
@@ -839,7 +840,7 @@ private fun ReviewsCard(
contentDescription = ""
)
}
}
}
) {
val reviews = reviewsResponse.value?.results ?: emptyList()