Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix composer shortcut detaching a reply (#7041)

authored by

dan and committed by
GitHub
86155986 bee50c39

+7 -1
+7 -1
src/state/shell/composer/index.tsx
··· 83 83 'exclamation-circle', 84 84 ) 85 85 } else { 86 - setState(opts) 86 + setState(prevOpts => { 87 + if (prevOpts) { 88 + // Never replace an already open composer. 89 + return prevOpts 90 + } 91 + return opts 92 + }) 87 93 } 88 94 }) 89 95