diff --git a/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift b/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift index 7e0f06ec..5c788750 100644 --- a/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift +++ b/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift @@ -162,17 +162,17 @@ struct StatusRowActionsView: View { HapticManager.shared.fireHaptic(of: .notification(.success)) switch action { case .respond: - viewModel.routerPath.presentedSheet = .replyToStatusEditor(status: viewModel.localStatus ?? viewModel.status) SoundEffectManager.shared.playSound(of: .share) + viewModel.routerPath.presentedSheet = .replyToStatusEditor(status: viewModel.localStatus ?? viewModel.status) case .favorite: - await statusDataController.toggleFavorite(remoteStatus: viewModel.localStatusId) SoundEffectManager.shared.playSound(of: .favorite) + await statusDataController.toggleFavorite(remoteStatus: viewModel.localStatusId) case .bookmark: - await statusDataController.toggleBookmark(remoteStatus: viewModel.localStatusId) SoundEffectManager.shared.playSound(of: .bookmark) + await statusDataController.toggleBookmark(remoteStatus: viewModel.localStatusId) case .boost: - await statusDataController.toggleReblog(remoteStatus: viewModel.localStatusId) SoundEffectManager.shared.playSound(of: .boost) + await statusDataController.toggleReblog(remoteStatus: viewModel.localStatusId) default: break }