mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-04 09:25:16 -05:00
fix build errors
This commit is contained in:
@@ -100,6 +100,7 @@ export const useRecipes = (all = false, fetchRecipes = true) => {
|
||||
async function refreshRecipes() {
|
||||
const { data } = await api.recipes.getAll(start, end);
|
||||
if (data) {
|
||||
// @ts-ignore
|
||||
set(recipes, data);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@ const backups = ref<AllBackups>({
|
||||
|
||||
function setBackups(newBackups: AllBackups | null) {
|
||||
if (newBackups) {
|
||||
// @ts-ignore
|
||||
set(backups, newBackups);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user