From a0117e82557b4d8a49c20f7e7900f5aa373ba8b5 Mon Sep 17 00:00:00 2001 From: Tim Raymond Date: Thu, 4 May 2017 11:46:53 -0400 Subject: [PATCH] Fix missing renaming of logout => logoutLink During development, this was previously named `logout`. This cleans up a remaining instance of `logout`, renaming it to the preferred `logoutLink` to remain consistent with the rest of the codebase. --- ui/src/utils/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/utils/ajax.js b/ui/src/utils/ajax.js index 17b460a0d..a5a7d51cf 100644 --- a/ui/src/utils/ajax.js +++ b/ui/src/utils/ajax.js @@ -44,7 +44,7 @@ export default async function AJAX({ return { ...response, auth: {links: auth}, - logout: links.logout, + logoutLink: links.logout, } } catch (error) { const {response} = error