Skip to content

Commit

Permalink
Finalize v0.0.5 (#68)
Browse files Browse the repository at this point in the history
* bump app builds

* dont allow back button on channels
  • Loading branch information
Christopher David authored Mar 30, 2023
1 parent c2d8e47 commit 3e4e7ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/expo/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"ios": {
"supportsTablet": true,
"bundleIdentifier": "arcade.labs.arc",
"buildNumber": "9",
"buildNumber": "10",
"config": {
"usesNonExemptEncryption": false
}
Expand All @@ -28,7 +28,7 @@
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"versionCode": 17,
"versionCode": 18,
"package": "arcade.labs.arc"
},
"extra": {
Expand Down
3 changes: 1 addition & 2 deletions packages/ui/src/components/NavHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const NavHeader = ({
}: NavHeaderProps) => {
const { canGoBack, goBack } = useNavigation()
const { name } = useRoute()

return (
<YStack
elevation="$3"
Expand All @@ -27,7 +26,7 @@ export const NavHeader = ({
borderBottomWidth="$1"
>
<XStack w="100%" justifyContent="space-between" alignItems="center">
{canGoBack() && name !== 'tabs' ? (
{canGoBack() && name !== 'tabs' && name !== 'channels' ? (
<Button
onPress={() => goBack()}
backgrounded={false}
Expand Down

0 comments on commit 3e4e7ef

Please sign in to comment.