This commit is contained in:
Mary Hipp 2024-06-27 14:40:43 -04:00 committed by psychedelicious
parent a63dbb2c2d
commit b5f23292d4
2 changed files with 11 additions and 11 deletions

View File

@ -103,14 +103,14 @@ export const boardsApi = api.injectEndpoints({
body: changes, body: changes,
}), }),
invalidatesTags: (result, error, arg) => { invalidatesTags: (result, error, arg) => {
const tags: ApiTagDescription[] = [] const tags: ApiTagDescription[] = [];
if (Object.keys(arg.changes).includes("archived")) { if (Object.keys(arg.changes).includes('archived')) {
tags.push({ type: 'Board', id: LIST_TAG }) tags.push({ type: 'Board', id: LIST_TAG });
} }
tags.push({ type: 'Board', id: arg.board_id }) tags.push({ type: 'Board', id: arg.board_id });
return tags return tags;
}, },
}), }),
}), }),