mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
refactor: completely remove ionic
This commit is contained in:
@@ -36,9 +36,10 @@ export class AppComponent implements OnInit {
|
||||
.pipe(startWith({ restarting: false, shuttingDown: false })),
|
||||
]).pipe(
|
||||
map(
|
||||
([verified, connected, status]) =>
|
||||
verified && (!connected || status.restarting || status.shuttingDown),
|
||||
([connected, verified, status]) =>
|
||||
connected && (!verified || status.restarting || status.shuttingDown),
|
||||
),
|
||||
startWith(true),
|
||||
)
|
||||
|
||||
async ngOnInit() {
|
||||
|
||||
Reference in New Issue
Block a user