ui: cleanup

This commit is contained in:
Aaron Greenspan
2021-01-14 13:42:16 -07:00
committed by Aiden McClelland
parent 27f05a4588
commit 9066d77a70
2 changed files with 1 additions and 2 deletions

View File

@@ -73,7 +73,6 @@ export class MockApiService extends ApiService {
}
async getAvailableApp (appId: string): Promise<AppAvailableFull> {
console.log('getAvilableApp', appId)
// throw new Error('Some horrible horrible error message gosh its awful')
return mockGetAvailableApp(appId)
.then(res => {

View File

@@ -1,4 +1,4 @@
import { Observable, from, interval, race, OperatorFunction, Observer, BehaviorSubject, Subject } from 'rxjs'
import { Observable, from, interval, race, OperatorFunction, Observer, BehaviorSubject } from 'rxjs'
import { take, map, switchMap, delay, tap } from 'rxjs/operators'
export function fromAsync$<S, T> (async: (s: S) => Promise<T>, s: S): Observable<T>