Skip to content

Commit fd84d31

Browse files
authored
fix: disable unfinished benchmark features in interactive UX (#157)
The interactive benchmark features are not finished yet. Removing them from the main menu until they are ready.
1 parent 642290d commit fd84d31

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/components/MainMenu.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ interface MenuItem {
2424
}
2525

2626
const allMenuItems: MenuItem[] = [
27+
/**
2728
{
2829
key: "benchmarks",
2930
label: "Benchmarks",
3031
description: "Performance testing and evaluation",
3132
icon: "▷",
3233
color: colors.success,
3334
},
35+
*/
3436
{
3537
key: "devboxes",
3638
label: "Devboxes",
@@ -188,8 +190,10 @@ export const MainMenu = ({ onSelect }: MainMenuProps) => {
188190
selectByKey("snapshots");
189191
} else if (input === "o") {
190192
selectByKey("objects");
193+
/**
191194
} else if (input === "e") {
192195
selectByKey("benchmarks");
196+
*/
193197
} else if (input === "n") {
194198
selectByKey("settings");
195199
} else if (input >= "1" && input <= "9") {

0 commit comments

Comments
 (0)