diff --git a/babel.config.js b/babel.config.js index f808ad85..66b82f92 100644 --- a/babel.config.js +++ b/babel.config.js @@ -2,17 +2,21 @@ module.exports = api => { api.cache(true); return { presets: ['babel-preset-expo'], - plugins: ['expo-router/babel', - ["module:react-native-dotenv", { - "envName": "APP_ENV", - "moduleName": "@env", - "path": ".env", - "blocklist": null, - "allowlist": null, - "safe": false, - "allowUndefined": true, - "verbose": false - }] + plugins: [ + 'expo-router/babel', + [ + 'module:react-native-dotenv', + { + envName: 'APP_ENV', + moduleName: '@env', + path: '.env', + blocklist: null, + allowlist: null, + safe: false, + allowUndefined: true, + verbose: false, + }, + ], ], }; }; diff --git a/lib/DummyQueries.tsx b/lib/DummyQueries.tsx index 0cc8a8e2..599b9d03 100644 --- a/lib/DummyQueries.tsx +++ b/lib/DummyQueries.tsx @@ -1,3 +1,4 @@ +import { View } from 'react-native'; import { Button, Text } from 'react-native-elements'; import supabase from './supabase'; @@ -41,12 +42,12 @@ export default function DummyQueries() { } return ( -