Skip to content

Commit e8d1b90

Browse files
fix: prevent error logging
1 parent 17f8fc6 commit e8d1b90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const createRepository = async () => {
8585
await axios.post(API_URL, { name: 'teachcode-solutions' });
8686
} catch (err) {
8787
console.log(chalk.red.bold('Error: Invalid credentials'));
88-
console.log(err);
88+
console.log();
8989
await createRepository();
9090
}
9191

0 commit comments

Comments
 (0)