1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 22:59:41 +02:00

Fixed spelling of availible

Sorry about all the small changes across lots of files, I think it would be best to fix this though to avoid potential future confusion.
This commit is contained in:
mtoohey31 2021-01-03 15:16:16 -05:00
parent 7e5ba43ac0
commit 5c59400a5d
6 changed files with 13 additions and 13 deletions

View file

@ -6,7 +6,7 @@ const backupBase = baseURL + "backups/";
const backupURLs = {
// Backup
avaiable: `${backupBase}avaiable/`,
available: `${backupBase}available/`,
createBackup: `${backupBase}export/database/`,
importBackup: (fileName) => `${backupBase}${fileName}/import/`,
deleteBackup: (fileName) => `${backupBase}${fileName}/delete/`,
@ -14,7 +14,7 @@ const backupURLs = {
export default {
async requestAvailable() {
let response = await apiReq.get(backupURLs.avaiable);
let response = await apiReq.get(backupURLs.available);
return response.data;
},