- Sonuç bulunamadı.
- {filteredGroups.map((group, index) => (
-
- {index > 0 && }
-
- {group.items.map((item) => (
- }
- onClick={() => handleCommandSelect(item)}
- className="cursor-pointer"
- >
- {item.label}
-
- ))}
-
-
- ))}
+ {filteredGroups.length === 0 ? (
+ Sonuç bulunamadı.
+ ) : (
+ filteredGroups.map((group, index) => (
+
+ {index > 0 && }
+
+ {group.items.map((item) => (
+ }
+ onClick={() => handleCommandSelect(item)}
+ className="cursor-pointer"
+ >
+ {item.label}
+
+ ))}
+
+
+ ))
+ )}