Desktop connection SaaS: config, billing, team support (#5768)

Co-authored-by: James Brunton <[email protected]>
Co-authored-by: James Brunton <[email protected]>
This commit is contained in:
ConnorYoh
2026-02-25 14:13:07 +00:00
committed by GitHub
co-authored by James Brunton James Brunton
parent 86072ec91a
commit 5c39acecd8
76 changed files with 6231 additions and 119 deletions
@@ -1,7 +1,8 @@
/**
* Default backend readiness guard (web builds do not need to wait for
* anything outside the browser, so we always report ready).
* @param _endpoint - Optional endpoint path (not used in web builds)
*/
export async function ensureBackendReady(): Promise<boolean> {
export async function ensureBackendReady(_endpoint?: string): Promise<boolean> {
return true;
}