Skip to content

Commit 6b40f30

Browse files
committed
Fix preview
1 parent d8f041f commit 6b40f30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ def add_release_file_comment(self, input: AddReleaseFileCommentInput) -> str:
7979
if input.release_card_url:
8080
comment += (
8181
"\n---\nHere's the preview release card for "
82-
f"twitter:\n\n![]({input.release_card_url})"
82+
f"twitter:\n\n![]({input.release_card_url})\n"
8383
)
8484

8585
if input.tweet:
86-
comment += f"\n\nHere's the tweet text: \n```\n{input.tweet}\n```"
86+
comment += f"\n\nHere's the tweet text: \n```\n{input.tweet}\n```\n"
8787

8888
add_or_edit_comment(input.pr_number, comment, slug="release-file")
8989
update_labels(input.pr_number, input.release_info)

0 commit comments

Comments
 (0)