1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

removing fix as a more elegant fix introduced in #11049

This commit is contained in:
Peter Clement 2023-06-28 11:11:01 +01:00
parent 87768fd577
commit c8ef273f69

View file

@ -206,14 +206,7 @@ export const deriveStores = context => {
focusedCellId.set(`${rowId}-${keys[0]}`)
} else {
// Some other error - just update the current cell
if (get(focusedCellId)) {
validation.actions.setError(
get(focusedCellId),
error?.message || "Error"
)
} else {
notifications.error(error?.message || "Error")
}
validation.actions.setError(get(focusedCellId), error?.message || "Error")
}
}