diff --git a/Sources/TableRowAction.swift b/Sources/TableRowAction.swift index 34b9911..9ac7979 100644 --- a/Sources/TableRowAction.swift +++ b/Sources/TableRowAction.swift @@ -45,8 +45,7 @@ private enum TableRowActionHandler where CellType: U switch self { case .voidAction(let handler): - handler(options) - return () + return handler(options) case .action(let handler): return handler(options) }