l-min-components 1.0.1167 → 1.0.1168
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
|
@@ -266,9 +266,8 @@ const AppMainLayout = ({ children }) => {
|
|
|
266
266
|
<MobileLayout findText={findText} />
|
|
267
267
|
) : (
|
|
268
268
|
<>
|
|
269
|
-
{isTranslationsLoading &&
|
|
270
|
-
newLoadingForPostDefaultAccount
|
|
271
|
-
Object.keys(translations)?.length === 0 ? (
|
|
269
|
+
{(isTranslationsLoading && Object.keys(translations)?.length === 0) ||
|
|
270
|
+
newLoadingForPostDefaultAccount ? (
|
|
272
271
|
<FullPageLoader hasBackground fixed={true} />
|
|
273
272
|
) : (
|
|
274
273
|
<Layout
|