Skip to content

Commit b07bda8

Browse files
committed
remove alerts for en/disable auto content moderation
1 parent f4b793e commit b07bda8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

apps/src/code-studio/showProjectAdmin.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,13 @@ export default () => {
8484

8585
$('#disable-auto-moderation').click(async function () {
8686
await dashboard.project.disableAutoContentModeration();
87-
alert("Our moderation filter is currently turned off for all projects, but your choice will be saved and applied when we re-enable the moderation service.");
8887
$('#disable-auto-moderation').hide();
8988
$('#moderation-explanation').hide();
9089
$('#enable-auto-moderation').show();
9190
});
9291

9392
$('#enable-auto-moderation').click(async function () {
9493
await dashboard.project.enableAutoContentModeration();
95-
alert("Our moderation filter is currently turned off for all projects, but your choice will be saved and applied when we re-enable the moderation service.");
9694
$('#disable-auto-moderation').show();
9795
$('#moderation-explanation').show();
9896
$('#enable-auto-moderation').hide();

0 commit comments

Comments
 (0)