fix: compose content warning editor not using theme color issue

This commit is contained in:
CMK 2021-07-06 15:36:00 +08:00
parent d3b2a1b900
commit add3d7d32c
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ final class StatusContentWarningEditorView: UIView {
// default hidden
let containerBackgroundView: UIView = {
let view = UIView()
view.backgroundColor = Asset.Colors.Background.secondarySystemBackground.color
view.backgroundColor = ThemeService.shared.currentTheme.value.secondarySystemBackgroundColor
return view
}()