Complete the code to enable real-time collaboration in Figma.
figma.[1] = trueSetting collaborationEnabled to true activates real-time collaboration in Figma.
Complete the code to broadcast changes instantly to all collaborators.
figma.on('change', () => { figma.[1](); })
The broadcastUpdate() function sends changes instantly to all collaborators in real-time.
Fix the error in the code to correctly merge simultaneous edits.
figma.mergeConflicts = [1]Setting mergeConflicts to true enables automatic merging of simultaneous edits, improving workflow.
Fill both blanks to set user presence and cursor tracking.
figma.[1] = true figma.[2] = true
Enabling showUserPresence and trackCursors helps collaborators see who is active and where they are working in real-time.
Fill all three blanks to configure real-time collaboration notifications.
figma.notifications.[1] = 'on' figma.notifications.[2] = 5 figma.notifications.[3] = true
Setting mode to 'on', frequency to 5 (minutes), and enabled to true activates timely collaboration notifications.