Show NSFW popup when directly visiting mod/blog marked as NSFW #211

Merged
enes merged 2 commits from issues/203-nsfw-redirect into staging 2025-01-30 18:17:06 +00:00
Showing only changes of commit 44d7f57f0a - Show all commits

View File

@ -24,7 +24,10 @@ export const NsfwAlertPopup = ({
<AlertPopup
header='Confirm'
label='Are you above 18 years of age?'
handleClose={handleClose}
handleClose={() => {
handleConfirm(false)
handleClose()
}}
handleConfirm={(confirm: boolean) => {
setConfirmNsfw(confirm)
handleConfirm(confirm)