Live video on the AT Protocol
79
fork

Configure Feed

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

Prettier write

+8 -2
+8 -2
js/app/components/live-dashboard/stream-key.tsx
··· 217 217 await navigator.clipboard.writeText(newKey.privateKey); 218 218 setDidcopy(true); 219 219 220 - toast.show('Stream Key', 'Stream Key was copied to your clipboard', { duration: 4 }); 220 + toast.show("Stream Key", "Stream Key was copied to your clipboard", { 221 + duration: 4, 222 + }); 221 223 } catch (e) { 222 224 // not allowed. oh well. 223 - toast.show('Stream Key', 'Failed to copy the Stream Key to your clipboard', { duration: 4 }); 225 + toast.show( 226 + "Stream Key", 227 + "Failed to copy the Stream Key to your clipboard", 228 + { duration: 4 }, 229 + ); 224 230 } 225 231 }; 226 232