통합피드백 AL_GNB_CLICK - 최종 클릭만 로그 호출

This commit is contained in:
opacity@t-win.kr
2025-07-15 17:42:59 +09:00
parent fc49f6c120
commit 3ca9577744
2 changed files with 10 additions and 9 deletions

View File

@@ -72,13 +72,15 @@ const TabItemBase = ({
if (spotlightId) { if (spotlightId) {
setLastFocusId(spotlightId); setLastFocusId(spotlightId);
} }
dispatch( if(target){
sendLogTotalRecommend({ dispatch(
contextName: LOG_CONTEXT_NAME.GNB, sendLogTotalRecommend({
messageId: LOG_MESSAGE_ID.GNB, contextName: LOG_CONTEXT_NAME.GNB,
buttonTitle: title, messageId: LOG_MESSAGE_ID.GNB,
}) buttonTitle: title,
); })
);
}
} }
}); });
}, },

View File

@@ -62,8 +62,7 @@ const TabItemBase = ({
sendLogTotalRecommend({ sendLogTotalRecommend({
contextName: LOG_CONTEXT_NAME.GNB, contextName: LOG_CONTEXT_NAME.GNB,
messageId: LOG_MESSAGE_ID.GNB, messageId: LOG_MESSAGE_ID.GNB,
preButtonTitle: subtitle, buttonTitle: patncNm ? patncNm : subtitle,
// buttonTitle: patncNm ? patncNm : subtitle,
}) })
); );
}); });