Revert then refix because shit got broken
This commit is contained in:
@ -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 ?? '',
|
||||
|
Reference in New Issue
Block a user