l-min-components 1.7.1347 → 1.7.1348
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -179,7 +179,6 @@ const AppMainLayout = ({ children }) => {
|
|
|
179
179
|
// if request status === 207, push to acct type page
|
|
180
180
|
useEffect(() => {
|
|
181
181
|
if (setDefaultAccount?.data) {
|
|
182
|
-
handleGetUserPlan();
|
|
183
182
|
if (
|
|
184
183
|
setDefaultAccount?.response?.status === 207 &&
|
|
185
184
|
!window.location.host.includes("staging") &&
|
|
@@ -232,6 +231,7 @@ const AppMainLayout = ({ children }) => {
|
|
|
232
231
|
break;
|
|
233
232
|
}
|
|
234
233
|
}
|
|
234
|
+
defaultAcct && handleGetUserPlan();
|
|
235
235
|
handleGetDefaultAccount();
|
|
236
236
|
}, [defaultAcct]);
|
|
237
237
|
|