-
Notifications
You must be signed in to change notification settings - Fork 117
featI(cloud): add changelog #2945
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Claude encountered an error —— View job I'll analyze this and get back to you. |
commit: |
Graphite Automations"Test" took an action on this PR • (09/18/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |
c434bc8
to
4673ba0
Compare
b3f1ecc
to
69bcbb3
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
4673ba0
to
a91b348
Compare
69bcbb3
to
2c15a25
Compare
d6f2981
to
0494aa3
Compare
64a73f8
to
4aaab18
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
0494aa3
to
d0fa589
Compare
4aaab18
to
8808a69
Compare
Claude encountered an error —— View job I'll analyze this and get back to you. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
<a | ||
className="flex gap-1.5 items-center flex-row-reverse text-right" | ||
href={authors[0].socials.twitter} | ||
> |
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.
The href
attribute references authors[0].socials.twitter
directly, but according to the schema definition in types.ts
, this property is optional. This could lead to broken links if an author doesn't have a Twitter account. Consider adding a fallback:
href={authors[0].socials.twitter || '#'}
Or implement a more robust approach that selects the first available social link from the author's socials object, with a sensible default when none exist.
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
Merge activity
|
No description provided.