diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index e649d6b3..fbfc133d 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -124,10 +124,10 @@ module.exports = class TweetCommand extends Command { const labelImg = await loadImage(labelData.body); const labelCanvas = createCanvas(20, 20); const labelCtx = labelCanvas.getContext('2d'); - this.roundedPath(labelCtx, 15, 0, 0, 20, 20); + this.roundedPath(labelCtx, 5, 0, 0, 20, 20); labelCtx.clip(); labelCtx.drawImage(labelImg, 0, 0, 20, 20); - this.roundedPath(labelCtx, 15, 0, 0, 20, 20); + this.roundedPath(labelCtx, 5, 0, 0, 20, 20); labelCtx.clip(); labelCtx.strokeStyle = '#303336'; labelCtx.lineWidth = 5;