diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-11-28 02:53:07 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-11-28 02:53:07 +0100 |
commit | 2a6848c679df7b3b39c275c0041fc5f8e02334f1 (patch) | |
tree | b70c6789bb86c5ff5d485b7cb8c59dd22166df42 /app/(tabs)/index.tsx | |
parent | f5d17ffcb6d09e8f3498ad50952b688f3729901e (diff) |
Bump Expo SDK 52
Diffstat (limited to 'app/(tabs)/index.tsx')
-rw-r--r-- | app/(tabs)/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index f4ff0ea..d6b970b 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -348,7 +348,7 @@ export default function HomeScreen() { } const response = await fetch( - `${process.env.EXPO_PUBLIC_API_URL}`, + `${process.env.EXPO_PUBLIC_API_URL}/graphql`, { method: "POST", headers: { @@ -359,7 +359,7 @@ export default function HomeScreen() { query: ` mutation NewPosition($input: PositionInput!) { newPosition(input: $input) { - id userId createdAt latitude longitude movingActivity + id } } `, |