-
Notifications
You must be signed in to change notification settings - Fork 12
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WatermelonAI SummaryThe 7 commits in this Pull Request are focused on fixing an issue with a broken deactivation text. The commits include adding the date to the text, calculating the relative date, printing the author of the PR, removing unnecessary console logs, removing a special case for Github, and fixing a helper text. Overall, these changes reflect the business logic of addressing a bug and improving the deactivation text for a better user experience. GitHub PRsClick here to login to Jira Slack Threads
Notion PagesLinear TicketsClick here to login to Asana |
@@ -21,12 +22,12 @@ const generalMarkdownHelper = ({ | |||
markdown = `\n #### ${systemResponseName}`; | |||
markdown += (value?.data || []) | |||
.map( | |||
({ number, title, link, body }) => | |||
`\n - [#${number} - ${title}](${link}) \n` | |||
({ number, title, link, body, author, created_at }) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this related?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, comes from #301 as to not have conflicts, when that one is merged there will be no diff
Description
Users were seeing a deactivated notice when we found no error
Type of change
Notes
Acceptance