tangled
alpha
login
or
join now
robinwobin.dev
/
witchsky.app
forked from
jollywhoppers.com/witchsky.app
0
fork
atom
Bluesky app fork with some witchin' additions 💫
0
fork
atom
overview
issues
pulls
pipelines
replace some bsky.app links with witchsky.app
xan.lol
3 months ago
72bc09d9
55df7529
verified
This commit was signed with the committer's
known signature
.
xan.lol
SSH Key Fingerprint:
SHA256:7Zs+dcly5YqxBg7v8XsE1uPMYCobHKBw7CDiNxpmSrY=
+4
-4
3 changed files
expand all
collapse all
unified
split
bskyembed
src
screens
post.tsx
src
screens
Hashtag.tsx
Topic.tsx
+2
-2
bskyembed/src/screens/post.tsx
···
90
90
91
91
function ErrorMessage() {
92
92
return (
93
93
-
<Container href="https://bsky.app/">
93
93
+
<Container href="https://witchsky.app/">
94
94
<Link
95
95
-
href="https://bsky.app/"
95
95
+
href="https://witchsky.app/"
96
96
className="transition-transform hover:scale-110 absolute top-4 right-4">
97
97
<img src={logo} className="h-6" />
98
98
</Link>
+1
-1
src/screens/Hashtag.tsx
···
60
60
}, [author])
61
61
62
62
const onShare = React.useCallback(() => {
63
63
-
const url = new URL('https://bsky.app')
63
63
+
const url = new URL('https://witchsky.app')
64
64
url.pathname = `/hashtag/${decodeURIComponent(tag)}`
65
65
if (author) {
66
66
url.searchParams.set('author', author)
+1
-1
src/screens/Topic.tsx
···
46
46
}, [topic])
47
47
48
48
const onShare = React.useCallback(() => {
49
49
-
const url = new URL('https://bsky.app')
49
49
+
const url = new URL('https://witchsky.app')
50
50
url.pathname = `/topic/${topic}`
51
51
shareUrl(url.toString())
52
52
}, [topic])