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 aeca4e3 commit 2795332Copy full SHA for 2795332
src/utils/projectTools.ts
@@ -80,18 +80,18 @@ const setupProjectTools = () => {
80
true,
81
),
82
},
83
- {
84
- name: "Compile Project",
85
- icon: "Rocket",
86
- action: () => downloadScript(nodeSystem, entries),
87
- },
88
...(isDesktop() ? [
89
{
90
name: "Run Project",
91
- icon: "CirclePlay",
+ icon: "Rocket",
92
action: () => runProject(generateScript(nodeSystem, entries)),
93
}
94
] : []),
+ {
+ name: "Compile Project",
+ icon: "Package",
+ action: () => downloadScript(nodeSystem, entries),
+ },
95
];
96
};
97
0 commit comments