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 6
6
/tmp
7
7
/node_modules
8
8
oclif.manifest.json
9
+ /config.json
9
10
10
11
11
12
yarn.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 {
66
66
67
67
try {
68
68
const response = await axios . post (
69
- `${ auth . url } /api/trpc/project.createCLI ` ,
69
+ `${ auth . url } /api/trpc/project.create ` ,
70
70
{
71
71
json : {
72
72
description,
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export const getProjects = async (
36
36
}
37
37
38
38
return projects ;
39
- } catch {
39
+ } catch ( error ) {
40
40
// @ts -expect-error TODO: Fix this
41
41
command . error ( chalk . red ( `Failed to fetch project list: ${ error . message } ` ) ) ;
42
42
}
@@ -74,7 +74,7 @@ export const getProject = async (
74
74
}
75
75
76
76
return project ;
77
- } catch {
77
+ } catch ( error ) {
78
78
// @ts -expect-error TODO: Fix this
79
79
command . error ( chalk . red ( `Failed to fetch project: ${ error . message } ` ) ) ;
80
80
}
You can’t perform that action at this time.
0 commit comments