diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-31 20:51:59 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-31 20:51:59 -0400 |
commit | 6af14c6089f0fa0924740fb6089affc545f93a81 (patch) | |
tree | c9932362c9398ccf5abc205544c35fbc595f03ae | |
parent | 94bbc8feb12fec210dae76ff90b6a782829a9c04 (diff) | |
download | JellySolutions-6af14c6089f0fa0924740fb6089affc545f93a81.tar.gz JellySolutions-6af14c6089f0fa0924740fb6089affc545f93a81.tar.bz2 JellySolutions-6af14c6089f0fa0924740fb6089affc545f93a81.zip |
Removed broken status texts which have been replaced with toasts
-rw-r--r-- | ufund-ui/src/app/components/cupboard/cupboard.component.html | 5 | ||||
-rw-r--r-- | ufund-ui/src/app/components/login/login.component.html | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/ufund-ui/src/app/components/cupboard/cupboard.component.html b/ufund-ui/src/app/components/cupboard/cupboard.component.html index 855bd7e..6f7799e 100644 --- a/ufund-ui/src/app/components/cupboard/cupboard.component.html +++ b/ufund-ui/src/app/components/cupboard/cupboard.component.html @@ -31,8 +31,6 @@ <input type="submit" value="Submit"> </form> - <span *ngIf="statusText">{{statusText | async}}</span> - </div> <div id="update-form" *ngIf="selectedForm === 'update'"> <h1> Update Need </h1> @@ -53,9 +51,8 @@ <label>Description</label> <br> <textarea name="description" [(ngModel)]="selectedNeed.description"></textarea><br> <input type="submit" value="Submit"> - + </form> - <span *ngIf="statusText">{{statusText | async}}</span> </div> <hr> diff --git a/ufund-ui/src/app/components/login/login.component.html b/ufund-ui/src/app/components/login/login.component.html index e1c3e2a..c67b903 100644 --- a/ufund-ui/src/app/components/login/login.component.html +++ b/ufund-ui/src/app/components/login/login.component.html @@ -6,5 +6,4 @@ <div> New? <a routerLink="/signup">Create an account</a> </div> - <span *ngIf="statusText">{{statusText | async}}</span> </div> |