diff --git a/src/apps/officer-web/Screens/Dashboard/Settings/IntegrationsSettings/index.tsx b/src/apps/officer-web/Screens/Dashboard/Settings/IntegrationsSettings/index.tsx
index f4690197..aa123bc2 100644
--- a/src/apps/officer-web/Screens/Dashboard/Settings/IntegrationsSettings/index.tsx
+++ b/src/apps/officer-web/Screens/Dashboard/Settings/IntegrationsSettings/index.tsx
@@ -8,7 +8,7 @@ import { Tabs, TabsList, TabsTrigger } from '@/components/ui/tabs';
import { SettingsSidebar, SettingsContent, type SettingsSection } from '../SettingsPanel';
import { GoogleOAuthConfig } from './GoogleOAuthConfig';
-import { GoogleAccount } from './GoogleAccount';
+// import { GoogleAccount } from './GoogleAccount'; // hidden — email uses IMAP app password now
import { DiscordBotConfig } from './DiscordBotConfig';
import { DiscordAccount } from './DiscordAccount';
import { TelegramBotConfig } from './TelegramBotConfig';
@@ -68,13 +68,15 @@ const personalSections: SettingsSection[] = [
description: 'Connect email accounts for inbox sync',
content: ,
},
- {
- key: 'google-account',
- icon: UserCircle,
- title: 'Google Account',
- description: 'Connect your Google account',
- content: ,
- },
+ // Google OAuth is left in place (code + DB) but hidden — email now uses an app password over IMAP,
+ // so there's no reason to reconnect Google here. Re-enable this section to bring it back.
+ // {
+ // key: 'google-account',
+ // icon: UserCircle,
+ // title: 'Google Account',
+ // description: 'Connect your Google account',
+ // content: ,
+ // },
{
key: 'discord-account',
icon: MessageCircle,