[선택 약관 0918 수정]

1. 선택약관 Optional terms 쌍따옴표 제거.
	2. 2개의 팝업 노출되는부분에 대하여 값이 완전히 변경되기 전까지는 다른팝업 노출처리 안되도록 변경.
This commit is contained in:
junghoon86.park
2025-09-18 16:29:54 +09:00
parent 8ba566310a
commit d7f1b82f7a
2 changed files with 5 additions and 3 deletions

View File

@@ -826,7 +826,7 @@ function IntroPanelWithOptional({
return shouldShowBenefitsView ? (
<div className={css.optionalDescription}>
{$L(
'By checking "Optional terms", you allow Shop Time to use your activity (views, purchases, searches, etc.) to show you more relevant content, product recommendations, special offers, and ads. If you do not check, you can still use all basic Shop Time features',
'By checking Optional terms, you allow Shop Time to use your activity (views, purchases, searches, etc.) to show you more relevant content, product recommendations, special offers, and ads. If you do not check, you can still use all basic Shop Time features',
)}
</div>
) : (

View File

@@ -334,8 +334,10 @@ export default function TermsOfService({ title, cbScrollTo }) {
}, [dispatch, termsList, isOptionalChecked]);
const handleOptionalDisagree = useCallback(() => {
setOptionalDisagreePopupOpen(true);
}, []);
if (agreePopup === false) {
setOptionalDisagreePopupOpen(true);
}
}, [agreePopup]);
const confirmOptionalDisagree = useCallback(() => {
const currentTermsList = termsListRef.current;