fix null check

This commit is contained in:
Fabian Freund
2025-08-25 06:46:59 +02:00
parent 915fc460b5
commit 58ebdf8421
@@ -462,7 +462,7 @@ class TabTreePreview extends HookConsumerWidget {
tabStateProvider(entity.tabId).select((value) => value?.isPrivate),
);
if (isTabPrivate != null) {
if (isTabPrivate == null) {
return const SizedBox.shrink();
}