Skip to content

Commit

Permalink
fix(mobile): Change the hoarded page to no longer be a modal to allow…
Browse files Browse the repository at this point in the history
… AddToList to work
  • Loading branch information
MohamedBassem committed Jul 29, 2024
1 parent 7ddfcad commit c7f9feb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Android App Release Build
on:
push:
tags:
- 'android/v[0-9]+.[0-9]+.[0-9]+'
- 'android/v[0-9]+.[0-9]+.[0-9]+-[0-9]+'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: iOS App Release Build
on:
push:
tags:
- 'ios/v[0-9]+.[0-9]+.[0-9]+'
- 'ios/v[0-9]+.[0-9]+.[0-9]+-[0-9]+'

jobs:
build:
Expand Down
5 changes: 3 additions & 2 deletions apps/mobile/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"NSAllowsArbitraryLoads": true,
"NSAllowsLocalNetworking": true
}
}
},
"buildNumber": "6"
},
"android": {
"adaptiveIcon": {
Expand All @@ -47,7 +48,7 @@
}
},
"package": "app.hoarder.hoardermobile",
"versionCode": 5
"versionCode": 6
},
"plugins": [
"expo-router",
Expand Down
7 changes: 1 addition & 6 deletions apps/mobile/app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,7 @@ export default function RootLayout() {
}}
>
<Stack.Screen name="index" />
<Stack.Screen
name="sharing"
options={{
presentation: "modal",
}}
/>
<Stack.Screen name="sharing" />
</StyledStack>
<StatusBar style="auto" />
</View>
Expand Down

0 comments on commit c7f9feb

Please sign in to comment.