Skip to content

Commit 35e8b8f

Browse files
committed
Bluesky
1 parent 0654642 commit 35e8b8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/BlogArticle.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module AuthorBox = {
4141
<a
4242
href={switch author.social {
4343
| X(handle) => "https://x.com/" ++ handle
44-
| BlueSky(handle) => "https://bsky.app/profile/" ++ handle
44+
| Bluesky(handle) => "https://bsky.app/profile/" ++ handle
4545
}}
4646
className="hover:text-gray-80"
4747
rel="noopener noreferrer">

src/common/BlogFrontmatter.res

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type social = X(string) | BlueSky(string)
1+
type social = X(string) | Bluesky(string)
22

33
type author = {
44
username: string,
@@ -70,7 +70,7 @@ let authors = [
7070
fullname: "Josh Derocher-Vlk",
7171
role: "Community Member",
7272
imgUrl: "https://cdn.bsky.app/img/avatar/plain/did:plc:erifxn5qcos2zrxvogse5y5s/bafkreif6v7lrtz24vi5ekumkiwg7n7js55coekszduwhjegfmdopd7tqmi@webp",
73-
social: BlueSky("vlkpack.com"),
73+
social: Bluesky("vlkpack.com"),
7474
},
7575
]
7676

0 commit comments

Comments
 (0)