fix typow

This commit is contained in:
rca 2024-07-21 22:55:10 +09:00
parent 0176d1b188
commit b30838461a

View File

@ -7,7 +7,7 @@ const store = useStore();
async function getHistories(childId: string, containPaid?: boolean): Promise<HistoryItem[]> {
const HistoriesResponse = await getHistory(childId, containPaid);
const taskList = store.state.cache.tasks; // use task
const taskList = store.state.cache.tasks; // use cache
const result: HistoryItem[] = HistoriesResponse.list.map((history) => {
const task = taskList.find((task) => task.id === history.taskId);