Desktop UI updates

This commit is contained in:
ivan-pelly
2026-02-28 09:51:53 -08:00
parent b6b058f05e
commit 592c7324a1
39 changed files with 907 additions and 363 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { Auth } from './auth';
describe('Auth', () => {
let service: Auth;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(Auth);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});