Skip to content

Commit b1fd284

Browse files
Julien Moreau-Mathisjulien-moreau
authored andcommitted
fix: put "npm" as default package manager in dashboard when creating a new project
1 parent 60e1fc2 commit b1fd284

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/src/dashboard/create.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ type PackageManagerCheckState = "processing" | "available" | "not-available";
3232

3333
export function DashboardCreateProjectDialog(props: IDashboardCreateProjectDialogProps) {
3434
const [destination, setDestination] = useState("");
35-
const [packageManager, setPackageManager] = useState<EditorProjectPackageManager>("yarn");
35+
const [packageManager, setPackageManager] = useState<EditorProjectPackageManager>("npm");
3636
const [template, setTemplate] = useState<EditorProjectTemplate>("nextjs");
3737
const [creating, setCreating] = useState(false);
3838

0 commit comments

Comments
 (0)