We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 642290d commit fd84d31Copy full SHA for fd84d31
1 file changed
src/components/MainMenu.tsx
@@ -24,13 +24,15 @@ interface MenuItem {
24
}
25
26
const allMenuItems: MenuItem[] = [
27
+ /**
28
{
29
key: "benchmarks",
30
label: "Benchmarks",
31
description: "Performance testing and evaluation",
32
icon: "▷",
33
color: colors.success,
34
},
35
+ */
36
37
key: "devboxes",
38
label: "Devboxes",
@@ -188,8 +190,10 @@ export const MainMenu = ({ onSelect }: MainMenuProps) => {
188
190
selectByKey("snapshots");
189
191
} else if (input === "o") {
192
selectByKey("objects");
193
194
} else if (input === "e") {
195
selectByKey("benchmarks");
196
197
} else if (input === "n") {
198
selectByKey("settings");
199
} else if (input >= "1" && input <= "9") {
0 commit comments