From 712f0838689bf05e377c80f7df13d1f8c3a435ce Mon Sep 17 00:00:00 2001 From: "ildar.timerbaev" Date: Sun, 8 Dec 2024 19:23:52 +0300 Subject: [PATCH] Fixed promotion NPE --- src/features/shared/suggestion-list/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/shared/suggestion-list/index.tsx b/src/features/shared/suggestion-list/index.tsx index 17ac7af0f..dc14d0a54 100644 --- a/src/features/shared/suggestion-list/index.tsx +++ b/src/features/shared/suggestion-list/index.tsx @@ -231,7 +231,7 @@ export function SuggestionList({ )} - {showList && !modeItems && items.length > 0 && ( + {showList && !modeItems && items?.length > 0 && (