Skip to content

Commit

Permalink
Merge pull request #31 from cultuurnet/fix/onboarding-flow
Browse files Browse the repository at this point in the history
  • Loading branch information
hstandaert committed Nov 14, 2022
2 parents b9ab424 + e0ad4da commit e4b35de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
if: github.event.review.state == 'approved'
runs-on: macos-12
name: Build Android
environment: debug
steps:
- uses: actions/checkout@v3
name: Checkout
Expand Down Expand Up @@ -70,6 +71,7 @@ jobs:
if: github.event.review.state == 'approved'
runs-on: macos-12
name: Build iOS
environment: debug
steps:
- uses: actions/checkout@v3
name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ yarn-error.log
#
.env
.env.local
.env

# BUCK
buck-out/
Expand Down
2 changes: 1 addition & 1 deletion src/_routing/_components/RootStackNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const RootStackNavigator = () => {

return (
<RootStack.Navigator screenOptions={{ headerShown: false }}>
{(!isPolicyApprovedInStorage || !hasViewedOnboarding) && !isAuthenticated && (
{!isPolicyApprovedInStorage && !hasViewedOnboarding && !isAuthenticated && (
<RootStack.Screen
component={Onboarding}
listeners={() => ({
Expand Down
2 changes: 1 addition & 1 deletion src/onboarding/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ConfirmViewContainer = styled.View`

export const BottomContainer = styled.View`
position: absolute;
bottom: 0px;
bottom: 10px;
width: 100%;
`;

Expand Down

0 comments on commit e4b35de

Please sign in to comment.