Hide production screen and update minor packages.

This commit is contained in:
Patrick Fic
2025-10-28 13:27:56 -07:00
parent a207d5dff7
commit 38c2b0af5a
6 changed files with 381 additions and 375 deletions

View File

@@ -0,0 +1,28 @@
import { Stack, useLocalSearchParams } from "expo-router";
import { useTranslation } from "react-i18next";
import { connect } from "react-redux";
const mapDispatchToProps = (dispatch) => ({});
export default connect(null, mapDispatchToProps)(JobsStack);
function JobsStack({}) {
const { t } = useTranslation();
const { jobId } = useLocalSearchParams();
return (
<Stack
screenOptions={{
headerTitleStyle: {
fontWeight: "bold",
},
}}
>
<Stack.Screen
name="index"
options={{
headerShown: false,
}}
/>
</Stack>
);
}