feat: implement unauthorized error handling and login popup
Some checks failed
Deploy Miniplan / build (push) Failing after 42s

This commit is contained in:
2026-04-30 22:39:04 +02:00
parent a3e115824b
commit 213065b86c
8 changed files with 70 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
import {Subject} from "rxjs";
export namespace LoginService {
export const subject = new Subject<void>();
export function showLoginPopup() {
subject.next()
}
}