feat: fixes and formatter

This commit is contained in:
2026-01-12 16:01:32 +01:00
parent 85c6084351
commit 11e632acff
353 changed files with 23315 additions and 27361 deletions
+5 -5
View File
@@ -1,5 +1,5 @@
import { registerRootComponent } from "expo";
import App from "./App";
import { registerRootComponent } from 'expo'
import App from './App'
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
@@ -8,10 +8,10 @@ import App from "./App";
function HeadlessCheck({ isHeadless }) {
if (isHeadless) {
// App has been launched in the background by iOS, ignore
return null;
return null
}
return <App />;
return <App />
}
registerRootComponent(App, () => HeadlessCheck);
registerRootComponent(App, () => HeadlessCheck)