this repo has no description
0
fork

Configure Feed

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

Fix composer not overwritten by restored composer window

+8 -1
+8 -1
src/components/compose.jsx
··· 802 802 }, 803 803 }; 804 804 window.opener.__COMPOSE__ = passData; // Pass it here instead of `showCompose` due to some weird proxy issue again 805 - window.opener.__STATES__.showCompose = true; 805 + if (window.opener.__STATES__.showCompose) { 806 + window.opener.__STATES__.showCompose = false; 807 + setTimeout(() => { 808 + window.opener.__STATES__.showCompose = true; 809 + }, 10); 810 + } else { 811 + window.opener.__STATES__.showCompose = true; 812 + } 806 813 }, 807 814 }); 808 815 }}