l-min-components 1.7.1348 → 1.7.1349

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.7.1348",
3
+ "version": "1.7.1349",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -179,6 +179,7 @@ const AppMainLayout = ({ children }) => {
179
179
  // if request status === 207, push to acct type page
180
180
  useEffect(() => {
181
181
  if (setDefaultAccount?.data) {
182
+ handleGetUserPlan();
182
183
  if (
183
184
  setDefaultAccount?.response?.status === 207 &&
184
185
  !window.location.host.includes("staging") &&
@@ -231,7 +232,6 @@ const AppMainLayout = ({ children }) => {
231
232
  break;
232
233
  }
233
234
  }
234
- defaultAcct && handleGetUserPlan();
235
235
  handleGetDefaultAccount();
236
236
  }, [defaultAcct]);
237
237