From e8323765a6c849df3716d072d4be954f868dbe6d Mon Sep 17 00:00:00 2001 From: romanetar Date: Wed, 16 Sep 2026 13:47:13 +0200 Subject: [PATCH] feat(profile): clarify account privacy toggles are global and don't affect speaker profiles Adds an explanatory note above the public-profile privacy checkboxes on the account profile page, clarifying that these settings apply to the member's account profile across the whole platform (not per-show) and do not control speaker profile data, which is public separately except for email and phone number. --- resources/js/profile/profile.js | 13 ++++++++++++ resources/js/profile/profile.module.scss | 25 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/resources/js/profile/profile.js b/resources/js/profile/profile.js index a530d04a..a2d2be41 100644 --- a/resources/js/profile/profile.js +++ b/resources/js/profile/profile.js @@ -7,6 +7,7 @@ import Container from "@material-ui/core/Container"; import CssBaseline from "@material-ui/core/CssBaseline"; import Checkbox from "@material-ui/core/Checkbox"; import DeleteIcon from '@material-ui/icons/Delete'; +import InfoOutlinedIcon from '@material-ui/icons/InfoOutlined'; import Grid from "@material-ui/core/Grid"; import MenuItem from "@material-ui/core/MenuItem"; import TextField from "@material-ui/core/TextField"; @@ -759,6 +760,18 @@ const ProfilePage = ({ formik={formik} passwordPolicy={passwordPolicy}/> + +
+ + + These settings apply to your account profile across the entire + platform (chat, directory, and public profile contexts for any + show or event) — they are not per-show. They do not control your + speaker profile, if you have one: speaker profile data is public + separately, except for your email and phone number. + +
+