Fix change yang tertinggal
This commit is contained in:
@@ -3,5 +3,6 @@
|
|||||||
"allow": [
|
"allow": [
|
||||||
"Bash(git add *)"
|
"Bash(git add *)"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"$version": 3
|
||||||
}
|
}
|
||||||
@@ -101,7 +101,7 @@ packagingOptions {
|
|||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0.2"
|
versionName "1.0.3"
|
||||||
|
|
||||||
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
|
buildConfigField "String", "REACT_NATIVE_RELEASE_LEVEL", "\"${findProperty('reactNativeReleaseLevel') ?: 'stable'}\""
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ require("dotenv").config();
|
|||||||
export default {
|
export default {
|
||||||
name: "HIPMI Badung Connect",
|
name: "HIPMI Badung Connect",
|
||||||
slug: "hipmi-mobile",
|
slug: "hipmi-mobile",
|
||||||
version: "1.0.2",
|
version: "1.0.3",
|
||||||
orientation: "portrait",
|
orientation: "portrait",
|
||||||
icon: "./assets/images/icon.png",
|
icon: "./assets/images/icon.png",
|
||||||
scheme: "hipmimobile",
|
scheme: "hipmimobile",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// OS Height
|
// OS Height
|
||||||
const OS_ANDROID_HEIGHT = 115
|
const OS_ANDROID_HEIGHT = 70
|
||||||
const OS_IOS_HEIGHT = 80
|
const OS_IOS_HEIGHT = 80
|
||||||
const OS_HEIGHT = Platform.OS === "ios" ? OS_IOS_HEIGHT : OS_ANDROID_HEIGHT
|
const OS_HEIGHT = Platform.OS === "ios" ? OS_IOS_HEIGHT : OS_ANDROID_HEIGHT
|
||||||
|
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ export default function Home_BottomFeatureSection({
|
|||||||
{/* Vacancy Item 1 */}
|
{/* Vacancy Item 1 */}
|
||||||
{_.isEmpty(listData) ? (
|
{_.isEmpty(listData) ? (
|
||||||
<CenterCustom style={{ paddingBlock: 50 }}>
|
<CenterCustom style={{ paddingBlock: 50 }}>
|
||||||
<TextCustom>Lowongan pekerjaan belum tersedia</TextCustom>
|
<TextCustom color="gray">Lowongan pekerjaan belum tersedia</TextCustom>
|
||||||
</CenterCustom>
|
</CenterCustom>
|
||||||
) : (
|
) : (
|
||||||
listData?.map((item: any, index: number) => (
|
listData?.map((item: any, index: number) => (
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ export default function Home_ImageSection() {
|
|||||||
transition={1000}
|
transition={1000}
|
||||||
style={{
|
style={{
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: 120,
|
height: 150,
|
||||||
borderRadius: 10,
|
borderRadius: 10,
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -115,15 +115,15 @@ export default function UserSearchMainView_V2() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 🔁 Refresh otomatis saat kembali ke halaman ini
|
// 🔁 Refresh otomatis saat kembali ke halaman ini
|
||||||
useFocusEffect(
|
// useFocusEffect(
|
||||||
useCallback(() => {
|
// useCallback(() => {
|
||||||
if (isInitialMount.current) {
|
// if (isInitialMount.current) {
|
||||||
isInitialMount.current = false;
|
// isInitialMount.current = false;
|
||||||
return;
|
// return;
|
||||||
}
|
// }
|
||||||
pagination.onRefresh();
|
// pagination.onRefresh();
|
||||||
}, [pagination.onRefresh]),
|
// }, [pagination.onRefresh]),
|
||||||
);
|
// );
|
||||||
|
|
||||||
const { ListEmptyComponent, ListFooterComponent } =
|
const { ListEmptyComponent, ListFooterComponent } =
|
||||||
createPaginationComponents({
|
createPaginationComponents({
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ export const TabsStyles: BottomTabNavigationOptions = {
|
|||||||
paddingTop: 5,
|
paddingTop: 5,
|
||||||
height: OS_ANDROID_HEIGHT,
|
height: OS_ANDROID_HEIGHT,
|
||||||
},
|
},
|
||||||
default: {},
|
|
||||||
}),
|
}),
|
||||||
tabBarBackground: TabBarBackground,
|
tabBarBackground: TabBarBackground,
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user