Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
onepiecehung committed Jul 26, 2023
1 parent 519e53e commit bac47a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/slash/asmhentai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
asmHentai = await axios.get(`${SERVER_HD}asmhentai/random`);
}

console.log(asmHentai);
// console.log(asmHentai);

if (asmHentai.data?.data) {
const result = asmHentai.data.data;
Expand Down
2 changes: 1 addition & 1 deletion src/commands/slash/hentaifox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
hentaiFox = await axios.get(`${SERVER_HD}hentaifox/random`);
}

console.log(hentaiFox);
// console.log(hentaiFox);

if (hentaiFox.data?.data) {
const result = hentaiFox.data.data;
Expand Down
2 changes: 1 addition & 1 deletion src/commands/slash/pururin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
pururin = await axios.get(`${SERVER_HD}pururin/random`);
}

console.log(pururin);
// console.log(pururin);

if (pururin.data?.data) {
const result = pururin.data.data;
Expand Down

0 comments on commit bac47a2

Please sign in to comment.