From d0aa3482b5a2f2a9af1bcdaf0d3c0d447c41a70f Mon Sep 17 00:00:00 2001 From: Ibrahim Date: Mon, 2 Feb 2026 16:34:24 +0000 Subject: [PATCH] fix: apps with long name don't have icons displayed in list --- .../header-bar/command-palette/sections/list-item.jsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/header-bar/command-palette/sections/list-item.jsx b/src/components/header-bar/command-palette/sections/list-item.jsx index 6d3c3be..939e795 100644 --- a/src/components/header-bar/command-palette/sections/list-item.jsx +++ b/src/components/header-bar/command-palette/sections/list-item.jsx @@ -54,7 +54,9 @@ function ListItem({ )} - {title} + + {title} + {showDescription && ( {description} @@ -62,6 +64,13 @@ function ListItem({