From 2fe7364e852cc1e5649b59860504036d6c65274d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 15 Oct 2019 18:48:18 +0000 Subject: [PATCH] Changed success page to look like old success page to make docs easier and reduce cognitive load on users --- Controllers/AuthController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controllers/AuthController.cs b/Controllers/AuthController.cs index 4815a07..79f74ef 100644 --- a/Controllers/AuthController.cs +++ b/Controllers/AuthController.cs @@ -229,7 +229,7 @@ namespace qbridge.Controllers [HttpGet("success")] public IActionResult SuccessPage() { - return ContentPage("

Success!

Token received from QuickBooks online and available for QBOI to automatically retrieve. You can close this browser window now."); + return ContentPage("

Success!

You have authorized the application to connect to your QuickBooks online.

You can close this browser page now."); }