tangled
alpha
login
or
join now
jollywhoppers.com
/
witchsky.app
103
fork
atom
Bluesky app fork with some witchin' additions 💫
witchsky.app
bluesky
fork
client
103
fork
atom
overview
issues
45
pulls
pipelines
fix: Captcha for signups
xan.lol
1 month ago
0c1a0907
c3f2f2c9
verified
This commit was signed with the committer's
known signature
.
xan.lol
SSH Key Fingerprint:
SHA256:7Zs+dcly5YqxBg7v8XsE1uPMYCobHKBw7CDiNxpmSrY=
+3
-1
1 changed file
expand all
collapse all
unified
split
src
screens
Signup
StepCaptcha
CaptchaWebView.tsx
+3
-1
src/screens/Signup/StepCaptcha/CaptchaWebView.tsx
···
5
5
import {type SignupState} from '#/screens/Signup/state'
6
6
7
7
const ALLOWED_HOSTS = [
8
8
+
'witchsky.app',
9
9
+
'witchsky.social',
8
10
'bsky.social',
9
11
'bsky.app',
10
12
'staging.bsky.app',
···
49
51
return state?.serviceUrl &&
50
52
new URL(state?.serviceUrl).host === 'staging.bsky.dev'
51
53
? 'app.staging.bsky.dev'
52
52
-
: 'bsky.app'
54
54
+
: 'witchsky.app'
53
55
}, [state?.serviceUrl])
54
56
55
57
const wasSuccessful = useRef(false)