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

Configure Feed

Select the types of activity you want to include in your feed.

Fix send button disabled when sharing post via DM without text (#10355)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

authored by

Samuel Newman
Claude Opus 4.6 (1M context)
and committed by
GitHub
deb3f26d a90bb66d

+2 -1
+2 -1
src/screens/Messages/components/MessageInput.tsx
··· 136 136 scrollEnabled: isInputScrollable.get(), 137 137 })) 138 138 139 - const submitDisabled = needsEmailVerification || message.trim().length === 0 139 + const submitDisabled = 140 + needsEmailVerification || (!hasEmbed && message.trim().length === 0) 140 141 141 142 const blur = useCallback(() => { 142 143 inputRef.current?.blur()