@@ -99,6 +99,8 @@ extension Home {
).onTapGesture {
isStatusPopupPresented = true
}.onLongPressGesture {
+ let impactHeavy = UIImpactFeedbackGenerator(style: .heavy)
+ impactHeavy.impactOccurred()
state.runLoop()
}
Spacer()
@@ -107,9 +107,7 @@ extension Snooze {
var snoozeDesc: some View {
- VStack(alignment: .leading) {
- Text(snoozeDescription)
- }
+ Text(snoozeDescription)
var body: some View {
@@ -313,7 +313,7 @@ final class BaseUserNotificationsManager: NSObject, UserNotificationsManager, In
static let soundID: UInt32 = 1336
private static var stopPlaying = false
- private func playSound(times: Int = 3) {
+ private func playSound(times: Int = 1) {
guard times > 0, !Self.stopPlaying else {
return