diff --git a/app.json b/app.json
index aaa9d0c..72c67cb 100644
--- a/app.json
+++ b/app.json
@@ -3,7 +3,7 @@
"name": "F1HUB",
"slug": "f1hub",
"scheme": "com.yabcompany.f1hub",
- "version": "2.1.1",
+ "version": "2.1.2",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
@@ -20,7 +20,7 @@
},
"android": {
"package": "com.yabcompany.f1hub",
- "versionCode": 9,
+ "versionCode": 10,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#121212"
diff --git a/src/components/SectionContainer.tsx b/src/components/SectionContainer.tsx
index 4e0c581..174ab78 100644
--- a/src/components/SectionContainer.tsx
+++ b/src/components/SectionContainer.tsx
@@ -75,7 +75,7 @@ export const SectionContainer = ({
alignItems: "center",
}}
>
- {contentVisible && (
+ {contentVisible && !isLoading && (
<>
{title && (
@@ -106,7 +106,7 @@ export const SectionContainer = ({
)}
- {contentVisible && <>{isError ? : children}>}
+ {contentVisible && !isLoading && <>{isError ? : children}>}
>
);
};