Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan-rosianu committed Mar 29, 2024
1 parent aaedce6 commit a8e3638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action/index.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -188164,7 +188164,7 @@ const robot = (app) => {
});
console.log({ response });
const tokenTicker = tokenName.split("-")[0];
console.log(`token: ${{ tokenName }}. token ticker: ${{ tokenTicker }}`);
console.log(`token: ${tokenName}. token ticker: ${tokenTicker}`);
if (!tokenTicker) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const robot = (app: Probot) => {

console.log({ response });
const tokenTicker = tokenName.split("-")[0];
console.log(`token: ${ tokenName }. token ticker: ${ tokenTicker }`);
console.log(`token: ${tokenName}. token ticker: ${tokenTicker}`);
if (!tokenTicker) {
return;
}
Expand Down

0 comments on commit a8e3638

Please sign in to comment.