Skip to content

Commit

Permalink
Fix wrong discriminator on CustomerCenterAnswerSubmittedEvent (#4566)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro authored Dec 10, 2024
1 parent eb334de commit 0e81efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/CustomerCenter/Events/CustomerCenterEvent.swift
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public enum CustomerCenterEvent: FeatureEvent, CustomerCenterEventType {
/// An event to be sent by the `RevenueCatUI` SDK.
public enum CustomerCenterAnswerSubmittedEvent: FeatureEvent, CustomerCenterEventType {

var eventDiscriminator: String? { CustomerCenterEventDiscriminator.lifecycle.rawValue }
var eventDiscriminator: String? { CustomerCenterEventDiscriminator.answerSubmitted.rawValue }

/// A feedback survey was completed with a particular option.
case answerSubmitted(CustomerCenterEventCreationData, Data)
Expand Down

0 comments on commit 0e81efe

Please sign in to comment.