Skip to content

Commit

Permalink
Merge pull request #1590 from ever-co/bug/profile-screen-task-estimate
Browse files Browse the repository at this point in the history
changed the event listener to be activated on normal press
  • Loading branch information
evereq authored Oct 19, 2023
2 parents f77f412 + f0694ca commit 37da1e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const ListItemContent: React.FC<ListItemProps> = observer((props) => {
<TaskTitleDisplay task={props.task} editMode={editTitle} setEditMode={setEditTitle} />
</View>
{!enableEstimate ? (
<TouchableOpacity onLongPress={() => setEnableEstimate(true)}>
<TouchableOpacity onPress={() => setEnableEstimate(true)}>
<AnimatedCircularProgress
size={56}
width={7}
Expand Down

0 comments on commit 37da1e7

Please sign in to comment.