File tree Expand file tree Collapse file tree 4 files changed +4
-7
lines changed
Expand file tree Collapse file tree 4 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 66/tmp
77/node_modules
88oclif.manifest.json
9+ /config.json
910
1011
1112yarn.lock
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ export default class ProjectCreate extends Command {
6666
6767 try {
6868 const response = await axios . post (
69- `${ auth . url } /api/trpc/project.createCLI ` ,
69+ `${ auth . url } /api/trpc/project.create ` ,
7070 {
7171 json : {
7272 description,
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export const getProjects = async (
3636 }
3737
3838 return projects ;
39- } catch {
39+ } catch ( error ) {
4040 // @ts -expect-error TODO: Fix this
4141 command . error ( chalk . red ( `Failed to fetch project list: ${ error . message } ` ) ) ;
4242 }
@@ -74,7 +74,7 @@ export const getProject = async (
7474 }
7575
7676 return project ;
77- } catch {
77+ } catch ( error ) {
7878 // @ts -expect-error TODO: Fix this
7979 command . error ( chalk . red ( `Failed to fetch project: ${ error . message } ` ) ) ;
8080 }
You can’t perform that action at this time.
0 commit comments