Skip to content

Commit

Permalink
Fixed promotion NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
dkildar committed Dec 8, 2024
1 parent ab96d0f commit 712f083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/shared/suggestion-list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export function SuggestionList({
</div>
</motion.div>
)}
{showList && !modeItems && items.length > 0 && (
{showList && !modeItems && items?.length > 0 && (
<motion.div
initial={{
opacity: 0,
Expand Down

0 comments on commit 712f083

Please sign in to comment.