feat: set Tldraw editor to readonly on mount in SpacesGrid component

This commit is contained in:
2025-09-04 11:17:59 -03:00
parent 30e379cde3
commit 14a1893fb7

View File

@@ -154,6 +154,9 @@ export function SpacesGrid() {
}}
className="min-h-52"
hideUi
onMount={(editor) => {
editor.updateInstanceState({ isReadonly: true });
}}
snapshot={JSON.parse(space.snapshotText).document}
/>
</div>