diff --git a/.github/workflows/eas-publish.yml b/.github/workflows/eas-publish.yml index 9f7eb3e..d9e885b 100644 --- a/.github/workflows/eas-publish.yml +++ b/.github/workflows/eas-publish.yml @@ -2,7 +2,7 @@ name: EAS Publish on: release: - types: [published] + types: [created] concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} diff --git a/mobile-app/screens/AppNavigator/WalletNavigator/screen/WalletPayout.screen.tsx b/mobile-app/screens/AppNavigator/WalletNavigator/screen/WalletPayout.screen.tsx new file mode 100644 index 0000000..c757cbd --- /dev/null +++ b/mobile-app/screens/AppNavigator/WalletNavigator/screen/WalletPayout.screen.tsx @@ -0,0 +1,25 @@ +import {ScrollView, View, Text} from "react-native"; +import {StackScreenProps} from "@react-navigation/stack"; +import {WalletParamsList} from "@screens/AppNavigator/WalletNavigator/WalletNavigator"; +import {WalletScreenName} from "@screens/AppNavigator/WalletNavigator/WalletScreenName"; +import {useEffect} from "react"; +import {GoBackButton} from "@screens/AppNavigator/SettingsNavigator/components/Goback"; +import {tailwind} from "@tailwind"; + + +type WalletPayoutScreenProps = StackScreenProps +export const WalletPayoutScreen: React.FC = ({navigation, route}) => { + useEffect(() => { + navigation.setOptions({ + headerTitle: `Payout #${route.params.payout.refId}`, + headerLeft: () => navigation.goBack()} /> + }) + }, []) + return ( + + + Orders + + + ) +}