{language.t("common.loading.ellipsis")}}
+ >
+ x?.id ?? ""}
+ items={prompts}
+ filterKeys={["label", "description"]}
+ sortBy={(a, b) => a.label.localeCompare(b.label)}
+ onSelect={(x) => {
+ if (x) applyPrompt(x)
+ }}
+ >
+ {(i) => (
+
+ {i.label}
+
+ {i.description}
+
+
+ )}
+
+
+