Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor to seperate the layout from the editor functionality #162

Draft
wants to merge 7 commits into
base: develop
Choose a base branch
from
3 changes: 3 additions & 0 deletions lib/Auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ function useAuthProvider() {
// Skip the default Matrix auth provider
if (type === 'matrix') continue;

// Also skip the tldraw auth provider, as there’s no authentication in tldraw
if (type === 'tldraw') continue;

// @TODO Tidy up these "updateConnectionStatus" calls... they happen in too many different places
updateConnectionStatus(type, false);

Expand Down
Loading