+
{i() + 1}
{label}
diff --git a/packages/showcase/src/sections/overlays.tsx b/packages/showcase/src/sections/overlays.tsx
index 16a7479..3c146fe 100644
--- a/packages/showcase/src/sections/overlays.tsx
+++ b/packages/showcase/src/sections/overlays.tsx
@@ -1,4 +1,4 @@
-import { createSignal } from "solid-js";
+import { createSignal, Show } from "solid-js";
import { Dialog } from "pettyui/dialog";
import { AlertDialog } from "pettyui/alert-dialog";
import { Drawer } from "pettyui/drawer";
@@ -155,18 +155,22 @@ function CommandPaletteDemo() {
const [open, setOpen] = createSignal(false);
const content = (
-
-
-
-
-
- New File
- Open File
- Save
-
- No results found
-
-
+
+
+
+
+
+
+ New File
+ Open File
+ Save
+
+ No results found
+
+
+
);
return content;