summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
commitebc613fee1ec59642b87a075da4d0a97b3aa1ad7 (patch)
tree4382997efbda79479c55d8a3656b18113351f75b /app
parentae63532503eb0b5c7a60d18ef17504c0632d508d (diff)
Use Expo router env
Diffstat (limited to 'app')
-rw-r--r--app/(tabs)/index.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx
index 46a690f..c631903 100644
--- a/app/(tabs)/index.tsx
+++ b/app/(tabs)/index.tsx
@@ -4,7 +4,6 @@ import ParallaxScrollView from '@/components/ParallaxScrollView';
import { ThemedText } from '@/components/ThemedText';
import { ThemedView } from '@/components/ThemedView';
import React, { useState, useEffect } from 'react';
-import { API_URL } from '@env';
import AsyncStorage from '@react-native-async-storage/async-storage';
@@ -28,7 +27,7 @@ export default function HomeScreen() {
}
try {
- const response = await fetch(`${API_URL}/graphql`, {
+ const response = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/graphql`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
@@ -108,7 +107,6 @@ export default function HomeScreen() {
style={styles.formInput}
onChangeText={setUsername}
value={username}
- placeholder="Username"
/>
</View>
<View>
@@ -117,7 +115,6 @@ export default function HomeScreen() {
style={styles.formInput}
onChangeText={setPassword}
value={password}
- placeholder="Password"
secureTextEntry
/>
</View>