Adjust height of Spacer in BitwardenTextField based on cardStyle presence

This commit is contained in:
Patrick Honkonen
2025-02-24 17:18:44 -05:00
committed by David Perez
parent 78d5965271
commit 6da8e2c47b

View File

@@ -378,7 +378,7 @@ fun BitwardenTextField(
content = content,
)
}
?: Spacer(modifier = Modifier.height(height = 6.dp))
?: Spacer(modifier = Modifier.height(height = cardStyle?.let { 6.dp } ?: 0.dp))
}
val filteredAutoCompleteList = autoCompleteOptions
.filter { option ->