Skip to content

Commit

Permalink
chore: Never null
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Sep 27, 2024
1 parent 26d2f54 commit 5bf9884
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ private void OnOpen()
#if __ANDROID__
SetItemsPresenter((_popup.Child as ViewGroup).FindFirstChild<ItemsPresenter>()!);
#elif __IOS__ || __MACOS__
SetItemsPresenter(_popup.Child.FindFirstChild<ItemsPresenter>()!);
SetItemsPresenter(_popup.Child!.FindFirstChild<ItemsPresenter>()!);
#endif
#endif

Expand Down

0 comments on commit 5bf9884

Please sign in to comment.