Skip to content

Commit

Permalink
Fix adding cells breaking swipe
Browse files Browse the repository at this point in the history
  • Loading branch information
krisanthony committed Apr 2, 2024
1 parent 2880393 commit 9f81e59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/SwipeActions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,10 @@ public struct SwipeView<Label, LeadingActions, TrailingActions>: View where Labe
@State var numberOfTrailingActions = 0

/// Enable triggering the leading edge via a drag.
@State var swipeToTriggerLeadingEdge = false
@State var swipeToTriggerLeadingEdge = true

/// Enable triggering the trailing edge via a drag.
@State var swipeToTriggerTrailingEdge = false
@State var swipeToTriggerTrailingEdge = true

// MARK: - Gesture state

Expand Down

0 comments on commit 9f81e59

Please sign in to comment.