Files
web/apps/scandic-web/components/MyPages/Profile/CommunicationSettings/index.tsx
T
Matilda Landström 549265cd34 Merged in feat/LOY-615-cleanup-env-prof-consent (pull request #3537)
feat(LOY-615): cleanup profiling consent env var

* feat(LOY-615): cleanup profiling consent env var


Approved-by: Anton Gunnarsson
2026-02-04 16:51:06 +00:00

22 lines
488 B
TypeScript

import { getIntl } from "@/i18n"
import { Section } from "../Section"
import EmailSlot from "./Slots/Email"
import PersonalizationSlot from "./Slots/Personalization"
export async function CommunicationSettings() {
const intl = await getIntl()
return (
<Section
title={intl.formatMessage({
id: "profile.communicationSettings",
defaultMessage: "Communication settings",
})}
>
<EmailSlot />
<PersonalizationSlot />
</Section>
)
}