-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused didDismiss() from InAppFCManager SDK-3591 #735
base: develop
Are you sure you want to change the base?
Conversation
WalkthroughThis change removes a no-operation method Changes
Sequence Diagram(s)Old Dismissal FlowsequenceDiagram
participant U as User
participant IC as InAppController
participant IM as InAppFCManager
U->>IC: Dismiss in-app notification
IC->>IM: didDismiss(inAppNotification)
IM-->>IC: No-operation response
IC->>IC: Log dismissal event
New Dismissal FlowsequenceDiagram
participant U as User
participant IC as InAppController
U->>IC: Dismiss in-app notification
IC->>IC: Log dismissal event (didDismiss call removed)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
💤 Files with no reviewable changes (2)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@piyush-kukadiya please provide a description for the PR |
15199aa
to
86b90a9
Compare
Removes unused
didDismiss()
fromInAppFCManager
.Before
didDismiss()
became NO-OP, it was used for tracking in-apps shown in a session.However later on we replaced this entire logic with
ImpressionManager
class anddidDismiss()
kept as a NO-OP.Summary by CodeRabbit