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 8fd6cac commit 28e5a7eCopy full SHA for 28e5a7e
.changeset/cold-cobras-wish.md
@@ -0,0 +1,5 @@
1
+---
2
+"create-better-t-stack": patch
3
4
+
5
+Remove redundant await return in create project mutation
apps/cli/src/index.ts
@@ -306,10 +306,10 @@ const router = t.router({
306
.mutation(async ({ input }) => {
307
const [projectName, options] = input;
308
const combinedInput = {
309
- projectName: projectName || undefined,
+ projectName,
310
...options,
311
};
312
- return await createProjectHandler(combinedInput);
+ await createProjectHandler(combinedInput);
313
}),
314
});
315
0 commit comments