Skip to content

Commit

Permalink
format:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw committed Nov 23, 2024
1 parent 5275b6e commit 05b6384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion native/app/Root.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as SplashScreen from "expo-splash-screen";
import { NavigationContainer, type NavigationContainerRef, type Theme, DefaultTheme, } from "@react-navigation/native";
import { NavigationContainer, type NavigationContainerRef, type Theme, DefaultTheme } from "@react-navigation/native";
import { useEffect, useRef } from "react";
import { useWindowDimensions, Platform, Appearance } from "react-native";
import { enableFreeze, enableScreens } from "react-native-screens";
Expand Down
6 changes: 3 additions & 3 deletions native/app/inventory/pages/InventoryPages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function InventoryPages() {
tabBarButton: (props) => (
<TouchableOpacity
{...(props as TouchableOpacityProps)}
style={[ { alignSelf: "center", justifyContent: "center", height: "100%" }]}
style={[{ alignSelf: "center", justifyContent: "center", height: "100%" }]}
onPressIn={() => {
if (Platform.OS !== "web") {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
Expand All @@ -85,7 +85,7 @@ export default function InventoryPages() {
tabBarButton: (props) => (
<TouchableOpacity
{...(props as TouchableOpacityProps)}
style={[ { alignSelf: "center", justifyContent: "center", height: "100%" }]}
style={[{ alignSelf: "center", justifyContent: "center", height: "100%" }]}
onPressIn={() => {
if (Platform.OS !== "web") {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
Expand All @@ -106,7 +106,7 @@ export default function InventoryPages() {
tabBarButton: (props) => (
<TouchableOpacity
{...(props as TouchableOpacityProps)}
style={[ { alignSelf: "center", justifyContent: "center", height: "100%" }]}
style={[{ alignSelf: "center", justifyContent: "center", height: "100%" }]}
onPressIn={() => {
if (Platform.OS !== "web") {
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
Expand Down

0 comments on commit 05b6384

Please sign in to comment.