-
Notifications
You must be signed in to change notification settings - Fork 243
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
feat: add Bluesky to Profile Social Links #4052
feat: add Bluesky to Profile Social Links #4052
Conversation
@elizabetdev is attempting to deploy a commit to the Daily Dev Team on Vercel. A member of the Team first needs to authorize it. |
viewBox="0 0 24 24" | ||
> | ||
<path | ||
fill="currentColor" |
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.
Since we have currentColor
here we could just use this svg both for mono/color version. What do you think?
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.
We don't have any coloured SVGs, so we can just use the same for primary and secondary
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.
Thanks, @ilasw and @omBratteng. Pushed 0628639.
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.
Nice work! Thank you for the effort 🙏
This needs an API counterpart, I will raise a PR on the other side 👀
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.
Nice, thanks for contributing! 👏
Hi @sshanzel, just checking in. Any updates on the API counterpart? |
packages/webapp/components/layouts/AccountLayout/Profile/index.tsx
Outdated
Show resolved
Hide resolved
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.
Great work and thank you for contributing!
I left a couple of comments that we should look at before merging.
I've also created a PR for the backend, so as soon as we update here, we should be ready to merge :)
Backend portion for [this PR](dailydotdev/apps#4052) --------- Co-authored-by: Ole-Martin Bratteng <[email protected]>
Thank you once again for helping out, @elizabetdev ! 🙌🏼 |
Changes
This PR adds Bluesky to the Profile Social Links.
This feature was requested here:
Fix error with Website and Mastodon fields
Additionally, there was an issue where entering a URL without
https
caused errors in the Website and Mastodon fields. This happened because theAccountTextField
was set as<AccountTextField type="url" />
. I’ve removed thetype="url"
attribute, aligning it with other fields like Twitter and YouTube, which also don’t specify a type.Manual Testing
Caution
Please make sure existing components are not breaking/affected by this PR