fix: Add support for main and old tldraw domains

closes #5769
This commit is contained in:
Tom Moor
2023-09-03 17:23:08 -04:00
parent 3721ea2333
commit 10a190cd80

View File

@@ -14,6 +14,6 @@ function Tldraw(props: Props) {
);
}
Tldraw.ENABLED = [new RegExp("^https?://beta\\.tldraw\\.com/r/(.*)")];
Tldraw.ENABLED = [new RegExp("^https?://(beta|www|old)\\.tldraw\\.com/r/(.*)")];
export default Tldraw;