File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
app/src/main/java/com/sopt/clody/presentation/ui/home/screen Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,13 @@ fun HomeRoute(
7272 Timber .tag(" showInAppReviewPopup" ).e(showInAppReviewPopup.toString())
7373 Timber .tag(" isFromReplyDiary" ).e(isFromReplyDiary.toString())
7474
75- LaunchedEffect (showInAppReviewPopup && isFromReplyDiary) {
76- InAppReviewManager .showPopup(context as Activity )
77- homeViewModel.updateShowInAppReviewPopup(false )
78- }
79-
8075 LaunchedEffect (Unit ) {
8176 AmplitudeUtils .trackEvent(eventName = AmplitudeConstraints .HOME )
77+
78+ if (showInAppReviewPopup && isFromReplyDiary) {
79+ InAppReviewManager .showPopup(context as Activity )
80+ homeViewModel.updateShowInAppReviewPopup(false )
81+ }
8282 }
8383
8484 LaunchedEffect (selectedYear, selectedMonth, selectedDay) {
You can’t perform that action at this time.
0 commit comments