+1
-26
src/components/ageAssurance/AgeAssuranceInitDialog.tsx
+1
-26
src/components/ageAssurance/AgeAssuranceInitDialog.tsx
···
16
16
import {type AppLanguage} from '#/locale/languages'
17
17
import {useLanguagePrefs} from '#/state/preferences'
18
18
import {useSession} from '#/state/session'
19
-
import {atoms as a, useTheme, web} from '#/alf'
19
+
import {atoms as a, web} from '#/alf'
20
20
import {Admonition} from '#/components/Admonition'
21
21
import {AgeAssuranceBadge} from '#/components/ageAssurance/AgeAssuranceBadge'
22
22
import {urls} from '#/components/ageAssurance/const'
···
63
63
}
64
64
65
65
function Inner() {
66
-
const t = useTheme()
67
66
const {_} = useLingui()
68
67
const {currentAccount} = useSession()
69
68
const langPrefs = useLanguagePrefs()
···
323
322
/>
324
323
</Button>
325
324
</View>
326
-
327
-
<Text
328
-
style={[a.text_xs, a.leading_snug, t.atoms.text_contrast_medium]}>
329
-
<Trans>
330
-
By continuing, you agree to the{' '}
331
-
<SimpleInlineLinkText
332
-
label={_(msg`KWS Terms of Use`)}
333
-
to={urls.kwsTermsOfUse}
334
-
style={[a.text_xs, a.leading_snug]}>
335
-
KWS Terms of Use
336
-
</SimpleInlineLinkText>{' '}
337
-
and acknowledge that KWS will store your verified status with
338
-
your hashed email address in accordance with the{' '}
339
-
<SimpleInlineLinkText
340
-
label={_(msg`KWS Privacy Policy`)}
341
-
to={urls.kwsPrivacyPolicy}
342
-
style={[a.text_xs, a.leading_snug]}>
343
-
KWS Privacy Policy
344
-
</SimpleInlineLinkText>
345
-
. This means you won’t need to verify again the next time you
346
-
use this email for other apps, games, and services powered by
347
-
KWS technology.
348
-
</Trans>
349
-
</Text>
350
325
</>
351
326
)}
352
327
</View>