Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork

replace some bsky.app links with witchsky.app

xan.lol 72bc09d9 55df7529

verified
Changed files
+4 -4
bskyembed
src
screens
src
+2 -2
bskyembed/src/screens/post.tsx
··· 90 90 91 91 function ErrorMessage() { 92 92 return ( 93 - <Container href="https://bsky.app/"> 93 + <Container href="https://witchsky.app/"> 94 94 <Link 95 - href="https://bsky.app/" 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 - const url = new URL('https://bsky.app') 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 - const url = new URL('https://bsky.app') 49 + const url = new URL('https://witchsky.app') 50 50 url.pathname = `/topic/${topic}` 51 51 shareUrl(url.toString()) 52 52 }, [topic])