Skip to content

Commit

Permalink
Merge pull request #2121 from Skyscanner/fix-BPKDividedCard-onTapGesture
Browse files Browse the repository at this point in the history
Fix onTapGesture for BPKDividedCard
  • Loading branch information
brunomdac authored Dec 11, 2024
2 parents 202f2ba + 1fd6eff commit cb74882
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Backpack-SwiftUI/Card/Classes/BPKDividedCard.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ public struct BPKDividedCard<PrimaryContent: View, SecondaryContent: View>: View
.frame(height: 1)
secondaryContent
}
.onTapGesture {
tapAction()
}
}
.onTapGesture {
tapAction()
}
}

Expand Down

0 comments on commit cb74882

Please sign in to comment.