549265cd34
feat(LOY-615): cleanup profiling consent env var * feat(LOY-615): cleanup profiling consent env var Approved-by: Anton Gunnarsson
22 lines
488 B
TypeScript
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>
|
|
)
|
|
}
|