Skip to content
Snippets Groups Projects
Unverified Commit 31792b32 authored by Trevor Farlow's avatar Trevor Farlow Committed by GitHub
Browse files

mobile: disable edit on tap of category balance (#471)

* mobile: disable edit on tap of category balance

* fixup! mobile: disable edit on tap of category balance
parent 64f55733
No related branches found
No related tags found
No related merge requests found
......@@ -334,17 +334,6 @@ export class BudgetCategory extends React.PureComponent {
</ListItem>
);
if (!editMode) {
return (
// <TouchableOpacity
// onClick={() => onEdit(category.id)}
// activeOpacity={0.7}
// >
<div onClick={() => onEdit(category.id)}>{content}</div>
// </TouchableOpacity>
);
}
return <div>{() => content}</div>;
// <Draggable
// id={category.id}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment