Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

revert change for closing composer on web only (#3343)

authored by

Hailey and committed by
GitHub
ef24611a 0baf9f99

+5 -1
+5 -1
src/view/com/composer/Composer.tsx
··· 508 508 title={_(msg`Discard draft?`)} 509 509 description={_(msg`Are you sure you'd like to discard this draft?`)} 510 510 onConfirm={() => { 511 - discardPromptControl.close(onClose) 511 + if (isWeb) { 512 + onClose() 513 + } else { 514 + discardPromptControl.close(onClose) 515 + } 512 516 }} 513 517 confirmButtonCta={_(msg`Discard`)} 514 518 confirmButtonColor="negative"