Skip to content

Commit ec3d4d8

Browse files
committed
🐛FIX: display
1 parent 78fab34 commit ec3d4d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/getRepo.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ module.exports = async () => {
3131
headers: headers,
3232
url: `https://api.github.com/users/${username}/repos?page=1&per_page=1000`,
3333
};
34-
3534
await axios(options)
3635
.then((res) => {
3736
// console.log(res.data[1].description);
3837
clear();
38+
io.write("");
39+
3940
for (let i = 0; i < res.data.length; i++) {
4041
table(
4142
i + 1,

0 commit comments

Comments
 (0)