From ad9ec5e7c6dd48ff19eb07f909a7772b2bfc64d9 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Thu, 28 Mar 2024 21:01:59 -0600 Subject: [PATCH] Don't require message --- Client/src/app/components/balloon/balloon.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/Client/src/app/components/balloon/balloon.component.ts b/Client/src/app/components/balloon/balloon.component.ts index 30e1e42..3cbe860 100644 --- a/Client/src/app/components/balloon/balloon.component.ts +++ b/Client/src/app/components/balloon/balloon.component.ts @@ -41,9 +41,6 @@ export class BalloonComponent implements OnInit { if (this.location == null || this.location == ""){ this.errorMessages.push("Please enter a city and state"); } - if (this.body == null || this.body == ""){ - this.errorMessages.push("Please enter a message"); - } if (this.errorMessages.length > 0){ return; } const body = `Location of balloon: ${this.location}\n${this.body}`;