Skip to content

Commit 61f52ad

Browse files
TS - remove redundant type
1 parent d3271e0 commit 61f52ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Vue/src/components/HomeContent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ onMounted(() => {
2626
(lookupStore.load() as Promise<Employee[]>)
2727
.then((items) => {
2828
displayExpr.value = (item: Task) =>
29-
getDisplayExpr(item as Parameters<typeof getDisplayExpr>[0], items);
29+
getDisplayExpr(item, items);
3030
return items;
3131
})
3232
.catch((error) => {

0 commit comments

Comments
 (0)