From 69c67d99f616deb8400377d3d38cb8ad191e2ea0 Mon Sep 17 00:00:00 2001 From: britttttk <39231115+britttttk@users.noreply.github.com> Date: Sun, 20 Jan 2019 21:19:01 -0700 Subject: [PATCH] Fix message for delete user --- BTCPayServer/Controllers/StoresController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/StoresController.cs b/BTCPayServer/Controllers/StoresController.cs index 7b1bfd1c3..9604d439f 100644 --- a/BTCPayServer/Controllers/StoresController.cs +++ b/BTCPayServer/Controllers/StoresController.cs @@ -172,7 +172,7 @@ namespace BTCPayServer.Controllers return View("Confirm", new ConfirmModel() { Title = $"Remove store user", - Description = $"Are you sure you want to remove this user's access to {user.Email}?", + Description = $"Are you sure you want to remove store access for {user.Email}?", Action = "Delete" }); }