Skip to content

Commit

Permalink
Merge pull request #204 from ecency/bugfix/promotion-issue
Browse files Browse the repository at this point in the history
Fixed promotion NPE
  • Loading branch information
feruzm authored Dec 9, 2024
2 parents ab96d0f + 712f083 commit 7b9fdbf
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 7b9fdbf

Please sign in to comment.