satoren
satoren
Once [this](https://github.com/excalidraw/excalidraw/pull/7348#issuecomment-2560829871) is released, handling UndoManager may no longer be necessary.
It looks like a new excalidraw version has been officially released, so I reimplemented y-excalidraw. https://y-phoenix.gigalixirapp.com/excalidraw
I don’t have the capacity to maintain it, so I don’t plan to release it myself at this time. I also don’t think it’s ideal to have too many similar...
I stopped using react-helmet-async and instead changed to the following simple implementation. In our use case, this was sufficient. ```tsx const DocumentTitle = ({title}: {title: string}) => { useEffect(()=>{ document.title...
[You can wait until react 19.](https://react.dev/blog/2024/04/25/react-19#support-for-metadata-tags) Or it could incorporate a few improvements, such as ```tsx const DocumentTitle = ({title}: {title: string}) => { useEffect(()=>{ const prev = document.title document.title...