diff options
author | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 12:59:11 -0400 |
---|---|---|
committer | Akash Keshav <112591754+domesticchores@users.noreply.github.com> | 2025-03-18 12:59:11 -0400 |
commit | 28a8fde7d57ee5ef762bd20f41c728966ab74d06 (patch) | |
tree | aa3b2db7e8e62f37eecec400e3193cbcbfb9deb0 /ufund-ui/src/app/components/funding-basket/funding-basket.component.ts | |
parent | 4c965e92244316ac4f432efa6e8cebf70c0c1053 (diff) | |
download | JellySolutions-28a8fde7d57ee5ef762bd20f41c728966ab74d06.tar.gz JellySolutions-28a8fde7d57ee5ef762bd20f41c728966ab74d06.tar.bz2 JellySolutions-28a8fde7d57ee5ef762bd20f41c728966ab74d06.zip |
connected backend to frontend for funding basket. -ak
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 | 5 |
1 files changed, 2 insertions, 3 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 bc7f087..061e3fa 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 @@ -14,12 +14,11 @@ import { BehaviorSubject, firstValueFrom } from 'rxjs'; styleUrl: './funding-basket.component.css' }) export class FundingBasketComponent implements OnInit { - basket = new BehaviorSubject<Need[]>([]); constructor( private router: Router, - private cupboardService: CupboardService, - private usersService: UsersService + protected cupboardService: CupboardService, + protected usersService: UsersService ) {} // this is for login rerouting |