diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 03a51f3..c184cb5 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -83,11 +83,12 @@ const generateTweet = (tweet: APITweet, isQuote = false): string => { ${isQuote ? '' : ''} ${generateTweetMedia(tweet)} ${(!isQuote && tweet.quote) ? generateTweet(tweet.quote, true) : ''} - View original` +
${(!isQuote ? `View original` : '')} + ` } export const renderInstantView = (properties: RenderProperties): ResponseInstructions => { - console.log('Generating Instant View (placeholder)...'); + console.log('Generating Instant View...'); const { tweet } = properties; const instructions: ResponseInstructions = { addHeaders: [] }; /* Use ISO date for Medium template */