From 066017d5fddccde3fe17e64dcae94c92bc38e87c Mon Sep 17 00:00:00 2001 From: Josh Dassinger Date: Thu, 29 Feb 2024 09:15:29 -0600 Subject: [PATCH] SSR-512 Fix misspelled field --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 8e628b98..0609256d 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1229,7 +1229,7 @@ export const useMainStore = defineStore({ const { data } = response; if (!data) { // TODO how should we handle this case? - return respone; + return response; } applicationUser.crmCustomerId = data.applicationUser?.crmCustomerId;