2023-06-23 10:52:03 +00:00
|
|
|
import {Setting, type SettingProps} from "./index.js";
|
2022-02-23 17:17:22 +00:00
|
|
|
|
2023-06-23 10:52:03 +00:00
|
|
|
export function AnonymizeUsernamesSetting(props: SettingProps) {
|
|
|
|
return (
|
|
|
|
<Setting {...props}>
|
2022-02-23 17:17:22 +00:00
|
|
|
<p class="info">
|
|
|
|
Anonymizes usernames by replacing them with "Anonymous #".
|
|
|
|
<br />
|
2022-02-25 00:06:24 +00:00
|
|
|
Note that User Labels and Username Colors will still be applied to any
|
|
|
|
usernames as normal.
|
2022-02-23 17:17:22 +00:00
|
|
|
</p>
|
2023-06-23 10:52:03 +00:00
|
|
|
</Setting>
|
|
|
|
);
|
2022-02-23 17:17:22 +00:00
|
|
|
}
|