Revert then refix because shit got broken

This commit is contained in:
2024-10-18 13:13:43 -05:00
parent cc8e0c623c
commit 770d04540c
6 changed files with 11 additions and 27 deletions

View File

@ -11,17 +11,15 @@ export const getInitialDataByAppleId = async (appleId: string) => {
'x-api-key': process.env.EXPO_PUBLIC_API_KEY ?? '',
},
});
console.log("InitialData API response: ", response);
return response;
} catch (error: unknown) {
console.error('Error getting Initial Data by Apple ID:', error);
console.error('Error getting user by Apple ID:', error);
throw error;
}
};
export const createUser = async (
appleId: string, email: string, fullName: string, pushToken: string
) => {
export const createUser =
async (appleId: string, email: string, fullName: string, pushToken: string) => {
try {
const apiUrl = `${process.env.EXPO_PUBLIC_API_URL}/api/users/createUser`;
const response = await fetch(apiUrl, {
@ -102,8 +100,7 @@ export const updateProfilePicture = async (userId: number, pfpUrl: string) => {
export const checkRelationshipStatus = async (userId: number) => {
try {
const apiUrl =
`${process.env.EXPO_PUBLIC_API_URL}/api/relationships/checkRelationship`;
const apiUrl = `${process.env.EXPO_PUBLIC_API_URL}/api/users/checkRelationship`;
const response = await fetch((apiUrl + `?userId=${userId}`), {
headers: {
'x-api-key': process.env.EXPO_PUBLIC_API_KEY ?? '',