Skip to content

Commit 13e9049

Browse files
committed
👌IMPROVE: uppercase
1 parent 6de94c5 commit 13e9049

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

utils/getEmail.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports = async () => {
2323
.then((res) => {
2424
for (let i = 0; i < res.data.length; i++) {
2525
if (res.data[i].type === "PushEvent") {
26-
const name = "✉️ Email";
26+
const name = "✉️ EMAIL";
2727
box(name, res.data[i].payload.commits[0].author.email);
2828
break;
2929
}

utils/getStargazer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = async () => {
2525
headers: headers,
2626
})
2727
.then((res) => {
28-
const name = "⭐️ Stars";
28+
const name = "⭐️ STARS";
2929
const data = res.data.stargazers_count;
3030
box(name, data);
3131
})

0 commit comments

Comments
 (0)