diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-02 23:27:27 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-02 23:27:27 -0400 |
commit | 3e5422b90a09d1ed2cfffae56abf8dbe361f6c27 (patch) | |
tree | 3b3fdbd99a4b2a4f990b2f8d8543a80614492142 /ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | |
parent | 6b7c830eeefb6a6a28136a3faacf7713953a6138 (diff) | |
download | JellySolutions-3e5422b90a09d1ed2cfffae56abf8dbe361f6c27.tar.gz JellySolutions-3e5422b90a09d1ed2cfffae56abf8dbe361f6c27.tar.bz2 JellySolutions-3e5422b90a09d1ed2cfffae56abf8dbe361f6c27.zip |
[incomplete] rearrange code to begin need-list abstraction
Diffstat (limited to 'ufund-ui/src/app/components/funding-basket/funding-basket.component.ts')
-rw-r--r-- | ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts index 847baee..0b3b9f3 100644 --- a/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts +++ b/ufund-ui/src/app/components/funding-basket/funding-basket.component.ts @@ -2,7 +2,7 @@ import {Component, Input, OnInit, ViewChild} from '@angular/core'; import {UsersService} from '../../services/users.service'; import {Router} from '@angular/router'; import {CupboardService} from '../../services/cupboard.service'; -import {catchError, firstValueFrom, Observable} from 'rxjs'; +import {catchError, firstValueFrom, Observable, of} from 'rxjs'; import {AuthService} from '../../services/auth.service'; import {ToastsService, ToastType} from '../../services/toasts.service'; @@ -91,4 +91,5 @@ export class FundingBasketComponent implements OnInit { } + protected readonly of = of; } |