this repo has no description
0
fork

Configure Feed

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

Fix error when opts is null/undefined

+1 -1
+1 -1
src/utils/open-compose.js
··· 5 5 const top = Math.max(0, (screenHeight - 450) / 2); 6 6 const width = Math.min(screenWidth, 600); 7 7 const height = Math.min(screenHeight, 450); 8 - const winUID = opts.uid || Math.random(); 8 + const winUID = opts?.uid || Math.random(); 9 9 const newWin = window.open( 10 10 url, 11 11 'compose' + winUID,