mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
lint fix
This commit is contained in:
parent
a63dbb2c2d
commit
b5f23292d4
@ -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;
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user