Fix message for delete user

This commit is contained in:
britttttk
2019-01-20 21:19:01 -07:00
parent 65596ec8c1
commit 69c67d99f6

View File

@@ -172,7 +172,7 @@ namespace BTCPayServer.Controllers
return View("Confirm", new ConfirmModel() return View("Confirm", new ConfirmModel()
{ {
Title = $"Remove store user", 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" Action = "Delete"
}); });
} }