Problem happened in **7.0-dev** line 35: ``` if response.error.error? return alertService.add("danger", "Error: " + response.error.error, 6000) ``` potential fix, but should fix that in the API response instead. ``` if response? return alertService.add("danger", "Error: " + response, 6000) ``` response expect an object but string are are used.  After the fix: <img width="1680" alt="Screenshot 2022-12-08 at 3 23 50 pm" src="https://user-images.githubusercontent.com/16495912/206356205-2ea8d5b1-cab7-4abd-9c15-118d725f1f98.png">