Skip to content

Commit

Permalink
chore: Comment out unused FontAwesome import in _layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
talaman committed May 25, 2024
1 parent d5b111f commit dbebc74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/app/_layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import FontAwesome from '@expo/vector-icons/FontAwesome';
// import FontAwesome from '@expo/vector-icons/FontAwesome';
import { useFonts } from 'expo-font';
import { Slot } from 'expo-router';
import * as SplashScreen from 'expo-splash-screen';
Expand All @@ -22,7 +22,7 @@ SplashScreen.preventAutoHideAsync();
export default function RootLayout() {
const [loaded, error] = useFonts({
SpaceMono: require('../assets/fonts/SpaceMono-Regular.ttf'),
...FontAwesome.font,
// ...FontAwesome.font,
});

// Expo Router uses Error Boundaries to catch errors in the navigation tree.
Expand Down

0 comments on commit dbebc74

Please sign in to comment.