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.pull/10616/head
parent
0141f0870c
commit
bdf111357d
|
@ -44,7 +44,7 @@ export default async function AJAX({
|
||||||
return {
|
return {
|
||||||
...response,
|
...response,
|
||||||
auth: {links: auth},
|
auth: {links: auth},
|
||||||
logout: links.logout,
|
logoutLink: links.logout,
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const {response} = error
|
const {response} = error
|
||||||
|
|
Loading…
Reference in New Issue