chore: formatting

This commit is contained in:
Timothy J. Baek 2024-04-02 09:33:27 -07:00
parent da8646cae9
commit e49e04c56a
2 changed files with 31 additions and 18 deletions

View file

@ -342,7 +342,7 @@ export const createApiKey = async (token: string) => {
throw error;
}
return res;
}
};
export const getApiKey = async (token: string) => {
let error = null;
@ -367,7 +367,7 @@ export const getApiKey = async (token: string) => {
throw error;
}
return res;
}
};
export const deleteApiKey = async (token: string) => {
let error = null;
@ -392,4 +392,4 @@ export const deleteApiKey = async (token: string) => {
throw error;
}
return res;
}
};