From 5fc0e7dc2bee2ad2c9312300fee0431e1de73a5b Mon Sep 17 00:00:00 2001 From: Matthew Landauer Date: Tue, 1 Oct 2024 06:30:06 +0000 Subject: [PATCH] Make success notice a little more informative --- app/controllers/alerts_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/alerts_controller.rb b/app/controllers/alerts_controller.rb index df615621f..258b9c906 100644 --- a/app/controllers/alerts_controller.rb +++ b/app/controllers/alerts_controller.rb @@ -112,7 +112,7 @@ def user_session alert.geocode_from_address if alert.save - redirect_to alerts_path, notice: "You succesfully added a new alert for #{alert.address}" + redirect_to alerts_path, notice: "You succesfully signed in and added a new alert for #{alert.address}" else @alert = T.let(alert, T.nilable(Alert)) render :new