Skip to content

Commit

Permalink
[ANDROAPP-5800] fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmr committed Feb 23, 2024
1 parent 0f493d0 commit 4c4730a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {

if (OrientationUtilsKt.isLandscape()) {
viewModel.getFiltersOpened().observe(this, isOpened -> {
if (isOpened) {
if (Boolean.TRUE.equals(isOpened)) {
ViewExtensionsKt.clipWithRoundedCorners(binding.mainComponent, ExtensionsKt.getDp(16));
} else {
ViewExtensionsKt.clipWithTopRightRoundedCorner(binding.mainComponent, ExtensionsKt.getDp(16));
Expand Down

0 comments on commit 4c4730a

Please sign in to comment.