diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-31 21:54:48 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-31 21:54:48 -0400 |
commit | 43bab0db99649e118325cfece416f4f7b65a7d0c (patch) | |
tree | 4ab1fcca547841baf7258ddb459971bf0748445d /ufund-ui/src/app/components/signup/signup.component.ts | |
parent | aef3df6f9eacfe37479046826a9ca14310b72456 (diff) | |
parent | 827831df4452449f11799c5e7daa2c6d1dd2ea90 (diff) | |
download | JellySolutions-43bab0db99649e118325cfece416f4f7b65a7d0c.tar.gz JellySolutions-43bab0db99649e118325cfece416f4f7b65a7d0c.tar.bz2 JellySolutions-43bab0db99649e118325cfece416f4f7b65a7d0c.zip |
Merge remote-tracking branch 'origin/css' into css
Diffstat (limited to 'ufund-ui/src/app/components/signup/signup.component.ts')
-rw-r--r-- | ufund-ui/src/app/components/signup/signup.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/signup/signup.component.ts b/ufund-ui/src/app/components/signup/signup.component.ts index 5ec84ae..a20d828 100644 --- a/ufund-ui/src/app/components/signup/signup.component.ts +++ b/ufund-ui/src/app/components/signup/signup.component.ts @@ -47,7 +47,7 @@ export class SignupComponent { this.usersService.createUser(username, password).then(() => { this.showSuccessMessage.next(true); }).catch(ex => { - this.toastService.sendToast(ToastType.INFO, "Unable to create account: " + friendlyHttpStatus[ex.status]) + this.toastService.sendToast(ToastType.ERROR, "Unable to create account: " + friendlyHttpStatus[ex.status]) console.log(ex) }) } |