@agent-native/core 0.79.16 → 0.79.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/corpus/README.md +2 -2
- package/corpus/core/CHANGELOG.md +14 -0
- package/corpus/core/docs/content/file-uploads.md +11 -4
- package/corpus/core/docs/content/locales/ar-SA/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/de-DE/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/es-ES/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/fr-FR/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/hi-IN/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/ja-JP/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/ko-KR/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/pt-BR/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/zh-CN/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/locales/zh-TW/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/multi-app-workspace.md +3 -3
- package/corpus/core/docs/content/template-clips.md +14 -5
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/engine/builder-engine.ts +8 -3
- package/corpus/core/src/cli/mcp.ts +11 -6
- package/corpus/core/src/client/AssistantChat.tsx +6 -2
- package/corpus/core/src/client/chat/markdown-renderer.tsx +1 -0
- package/corpus/core/src/client/index.ts +7 -1
- package/corpus/core/src/client/org/OrgSwitcher.tsx +5 -5
- package/corpus/core/src/client/org/TeamPage.tsx +11 -3
- package/corpus/core/src/client/settings/SettingsTabsPage.tsx +216 -0
- package/corpus/core/src/client/settings/index.ts +5 -0
- package/corpus/core/src/file-upload/index.ts +1 -0
- package/corpus/core/src/file-upload/registry.ts +22 -6
- package/corpus/core/src/file-upload/types.ts +6 -1
- package/corpus/core/src/integrations/adapters/email.ts +26 -18
- package/corpus/core/src/integrations/adapters/slack.ts +8 -7
- package/corpus/core/src/integrations/adapters/telegram.ts +9 -11
- package/corpus/core/src/integrations/adapters/whatsapp.ts +12 -9
- package/corpus/core/src/integrations/plugin.ts +79 -13
- package/corpus/core/src/onboarding/default-steps.ts +6 -3
- package/corpus/core/src/onboarding/types.ts +1 -1
- package/corpus/core/src/org/handlers.ts +1 -1
- package/corpus/core/src/server/agent-chat-plugin.ts +4 -7
- package/corpus/core/src/server/better-auth-instance.ts +19 -62
- package/corpus/core/src/server/core-routes-plugin.ts +93 -180
- package/corpus/core/src/server/create-server.ts +55 -116
- package/corpus/core/src/server/email-actions.ts +3 -6
- package/corpus/core/src/server/email.ts +52 -17
- package/corpus/core/src/server/index.ts +2 -1
- package/corpus/core/src/server/scoped-key-storage.ts +223 -0
- package/corpus/core/src/shared/agent-env.ts +3 -3
- package/corpus/core/src/sharing/actions/share-resource.ts +1 -1
- package/corpus/core/src/styles/agent-native.css +55 -3
- package/corpus/core/src/templates/workspace-root/AGENTS.md +3 -2
- package/corpus/core/src/templates/workspace-root/README.md +1 -1
- package/corpus/core/src/templates/workspace-root/scripts/repair-workspace-org.ts +29 -90
- package/corpus/core/src/terminal/pty-server.ts +3 -38
- package/corpus/core/src/triggers/dispatcher.ts +1 -2
- package/corpus/templates/.retired/issues/package.json +7 -0
- package/corpus/templates/.retired/meeting-notes/package.json +7 -0
- package/corpus/templates/.retired/recruiting/package.json +7 -0
- package/corpus/templates/.retired/scheduling/package.json +7 -0
- package/corpus/templates/.retired/voice/package.json +7 -0
- package/corpus/templates/analytics/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/analytics/app/components/layout/Sidebar.tsx +0 -17
- package/corpus/templates/analytics/app/i18n/zh-TW.ts +7 -1
- package/corpus/templates/analytics/app/i18n-data.ts +71 -2
- package/corpus/templates/analytics/app/pages/Settings.tsx +120 -73
- package/corpus/templates/analytics/app/pages/sessions/SessionsPage.tsx +0 -11
- package/corpus/templates/analytics/app/routes/catalog.tsx +33 -176
- package/corpus/templates/analytics/app/routes/team.tsx +3 -2
- package/corpus/templates/analytics/changelog/2026-06-26-dashboard-templates-are-tucked-into-settings-and-show-simple.md +6 -0
- package/corpus/templates/analytics/changelog/2026-06-26-the-sessions-page-shows-a-single-page-title-instead-of-repea.md +6 -0
- package/corpus/templates/analytics/server/lib/dashboard-catalog.ts +37 -28
- package/corpus/templates/assets/app/routes/settings.tsx +65 -43
- package/corpus/templates/assets/app/routes/team.tsx +2 -10
- package/corpus/templates/brain/app/routes/settings.tsx +390 -358
- package/corpus/templates/brain/app/routes/team.tsx +2 -8
- package/corpus/templates/calendar/actions/db-connect.ts +5 -29
- package/corpus/templates/calendar/app/components/CloudUpgrade.tsx +8 -51
- package/corpus/templates/calendar/app/components/calendar/GoogleConnectBanner.tsx +2 -1
- package/corpus/templates/calendar/app/components/calendar/GoogleSetupWizard.tsx +4 -2
- package/corpus/templates/calendar/app/components/layout/Sidebar.tsx +0 -2
- package/corpus/templates/calendar/app/pages/Settings.tsx +304 -271
- package/corpus/templates/calendar/app/routes/_app.team.tsx +2 -17
- package/corpus/templates/calendar/server/handlers/google-auth.ts +22 -9
- package/corpus/templates/calendar/server/lib/booking-emails.ts +1 -1
- package/corpus/templates/calendar/server/lib/event-guest-notifications.ts +1 -1
- package/corpus/templates/calendar/server/lib/google-calendar.ts +48 -28
- package/corpus/templates/chat/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/chat/app/hooks/use-navigation-state.ts +4 -2
- package/corpus/templates/chat/app/routes/settings.tsx +54 -54
- package/corpus/templates/chat/app/routes/team.tsx +2 -10
- package/corpus/templates/clips/.agents/skills/ai-video-tools/SKILL.md +7 -2
- package/corpus/templates/clips/.agents/skills/recording/SKILL.md +1 -1
- package/corpus/templates/clips/.agents/skills/video-sharing/SKILL.md +7 -0
- package/corpus/templates/clips/AGENTS.md +8 -0
- package/corpus/templates/clips/actions/invite-member.ts +1 -1
- package/corpus/templates/clips/actions/request-transcript.ts +1 -1
- package/corpus/templates/clips/app/components/library/library-layout.tsx +3 -3
- package/corpus/templates/clips/app/components/player/transcript-panel.tsx +2 -0
- package/corpus/templates/clips/app/routes/_app.settings._index.tsx +629 -643
- package/corpus/templates/clips/app/routes/r.$recordingId.tsx +219 -155
- package/corpus/templates/clips/changelog/2026-06-26-long-desktop-recordings-are-checkpointed-so-macos-finalizati.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-26-non-mac-desktop-recordings-wait-for-upload-transcription.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-26-s3-compatible-storage-keys-now-save-securely-from-clips-sett.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-26-shared-clip-links-guide-agents-through-processing-transcripts.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-26-the-clip-details-sidebar-now-collapses-into-a-slide-out-pane.md +6 -0
- package/corpus/templates/clips/changelog/2026-06-26-the-clips-library-now-matches-the-shared-recessed-shell-styl.md +6 -0
- package/corpus/templates/clips/desktop/src/lib/recorder.ts +55 -3
- package/corpus/templates/clips/desktop/src/lib/transcription-capture.ts +217 -5
- package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +1 -0
- package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +176 -5
- package/corpus/templates/clips/server/lib/public-agent-context.ts +31 -0
- package/corpus/templates/clips/server/lib/s3-upload-provider.ts +60 -14
- package/corpus/templates/clips/server/lib/video-storage.ts +37 -9
- package/corpus/templates/clips/server/routes/api/agent-transcript.json.get.ts +5 -0
- package/corpus/templates/content/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/content/app/components/sidebar/NotionButton.tsx +1 -0
- package/corpus/templates/content/app/routes/_app.settings.tsx +54 -55
- package/corpus/templates/content/app/routes/_app.team.tsx +2 -28
- package/corpus/templates/content/server/lib/notion.ts +43 -11
- package/corpus/templates/content/server/routes/api/notion/auth-url.get.ts +2 -2
- package/corpus/templates/content/server/routes/api/notion/status.get.ts +3 -3
- package/corpus/templates/design/app/routes/settings.tsx +60 -38
- package/corpus/templates/design/app/routes/team.tsx +2 -10
- package/corpus/templates/dispatch/app/hooks/use-navigation-state.ts +2 -2
- package/corpus/templates/dispatch/app/routes/settings.tsx +70 -55
- package/corpus/templates/dispatch/app/routes/team.tsx +5 -1
- package/corpus/templates/forms/actions/db-connect.ts +7 -36
- package/corpus/templates/forms/actions/navigate.ts +2 -2
- package/corpus/templates/forms/app/components/CloudUpgrade.tsx +8 -47
- package/corpus/templates/forms/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/forms/app/components/layout/Layout.tsx +42 -25
- package/corpus/templates/forms/app/components/layout/Sidebar.tsx +35 -76
- package/corpus/templates/forms/app/global.css +9 -25
- package/corpus/templates/forms/app/hooks/use-navigation-state.ts +4 -4
- package/corpus/templates/forms/app/i18n/ar-SA.ts +1 -0
- package/corpus/templates/forms/app/i18n/de-DE.ts +1 -0
- package/corpus/templates/forms/app/i18n/en-US.ts +1 -0
- package/corpus/templates/forms/app/i18n/es-ES.ts +1 -0
- package/corpus/templates/forms/app/i18n/fr-FR.ts +1 -0
- package/corpus/templates/forms/app/i18n/hi-IN.ts +1 -0
- package/corpus/templates/forms/app/i18n/ja-JP.ts +1 -0
- package/corpus/templates/forms/app/i18n/ko-KR.ts +1 -0
- package/corpus/templates/forms/app/i18n/pt-BR.ts +1 -0
- package/corpus/templates/forms/app/i18n/zh-CN.ts +1 -0
- package/corpus/templates/forms/app/i18n/zh-TW.ts +1 -0
- package/corpus/templates/forms/app/lib/route-prewarm.ts +9 -8
- package/corpus/templates/forms/app/pages/AskPage.tsx +70 -0
- package/corpus/templates/forms/app/pages/FormsListPage.tsx +74 -81
- package/corpus/templates/forms/app/root.tsx +1 -1
- package/corpus/templates/forms/app/routes/_app.ask.tsx +14 -0
- package/corpus/templates/forms/app/routes/_app.settings.tsx +54 -54
- package/corpus/templates/forms/app/routes/_app.team.tsx +2 -9
- package/corpus/templates/forms/app/routes/_index.tsx +21 -130
- package/corpus/templates/forms/changelog/2026-06-26-ask-forms-opens-as-a-standard-app-tab-with-a-simpler-sidebar.md +6 -0
- package/corpus/templates/forms/changelog/2026-06-26-forms-are-shown-in-a-tighter-row-list-with-a-denser-sidebar.md +6 -0
- package/corpus/templates/forms/shared/navigation.ts +4 -2
- package/corpus/templates/macros/app/routes/settings.tsx +54 -54
- package/corpus/templates/macros/app/routes/team.tsx +2 -10
- package/corpus/templates/mail/actions/helpers.ts +2 -2
- package/corpus/templates/mail/app/components/GoogleConnectBanner.tsx +2 -1
- package/corpus/templates/mail/app/pages/SettingsPage.tsx +5 -5
- package/corpus/templates/mail/app/routes/team.tsx +3 -2
- package/corpus/templates/mail/server/handlers/emails.ts +3 -2
- package/corpus/templates/mail/server/handlers/google-auth.ts +19 -12
- package/corpus/templates/mail/server/lib/automation-engine.ts +3 -2
- package/corpus/templates/mail/server/lib/email-state.ts +2 -3
- package/corpus/templates/mail/server/lib/google-auth.ts +28 -11
- package/corpus/templates/mail/server/lib/jobs.ts +3 -2
- package/corpus/templates/mail/server/onboarding.ts +9 -6
- package/corpus/templates/mail/server/routes/api/attachments.get.ts +3 -3
- package/corpus/templates/plan/actions/request-plan-access.ts +1 -1
- package/corpus/templates/plan/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/plan/app/hooks/use-navigation-state.ts +4 -2
- package/corpus/templates/plan/app/lib/route-prewarm.ts +0 -4
- package/corpus/templates/plan/app/routes/settings.tsx +75 -73
- package/corpus/templates/plan/app/routes/team.tsx +2 -8
- package/corpus/templates/plan/server/lib/comment-notifications.ts +1 -1
- package/corpus/templates/slides/actions/check-image-gen.ts +2 -1
- package/corpus/templates/slides/actions/db-connect.ts +7 -45
- package/corpus/templates/slides/actions/edit-image.ts +6 -3
- package/corpus/templates/slides/actions/generate-image-api.ts +1 -1
- package/corpus/templates/slides/actions/generate-image.ts +2 -2
- package/corpus/templates/slides/actions/generate-slides-ai.ts +5 -3
- package/corpus/templates/slides/actions/image-gen-status.ts +4 -3
- package/corpus/templates/slides/actions/image-search.ts +6 -3
- package/corpus/templates/slides/actions/search-images.ts +6 -3
- package/corpus/templates/slides/app/components/CloudUpgrade.tsx +8 -51
- package/corpus/templates/slides/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/slides/app/components/layout/Sidebar.tsx +0 -2
- package/corpus/templates/slides/app/routes/settings.tsx +54 -54
- package/corpus/templates/slides/app/routes/team.tsx +2 -12
- package/corpus/templates/slides/server/handlers/google-docs-auth.ts +9 -9
- package/corpus/templates/slides/server/handlers/image-gen.ts +5 -1
- package/corpus/templates/slides/server/handlers/image-providers/gemini.ts +9 -1
- package/corpus/templates/slides/server/handlers/image-providers/index.ts +18 -8
- package/corpus/templates/slides/server/handlers/image-providers/openai.ts +10 -4
- package/corpus/templates/slides/server/handlers/image-providers/types.ts +1 -0
- package/corpus/templates/slides/server/lib/google-docs-oauth.ts +59 -34
- package/corpus/templates/slides/server/register-secrets.ts +60 -0
- package/corpus/templates/videos/actions/db-connect.ts +7 -45
- package/corpus/templates/videos/app/components/CloudUpgrade.tsx +8 -51
- package/corpus/templates/videos/app/components/Sidebar.tsx +1 -9
- package/corpus/templates/videos/app/components/layout/Header.tsx +0 -1
- package/corpus/templates/videos/app/components/layout/NavSidebar.tsx +0 -3
- package/corpus/templates/videos/app/routes/settings.tsx +54 -54
- package/corpus/templates/videos/app/routes/team.tsx +2 -8
- package/dist/agent/engine/builder-engine.d.ts.map +1 -1
- package/dist/agent/engine/builder-engine.js +8 -3
- package/dist/agent/engine/builder-engine.js.map +1 -1
- package/dist/cli/mcp.d.ts.map +1 -1
- package/dist/cli/mcp.js +3 -4
- package/dist/cli/mcp.js.map +1 -1
- package/dist/client/AssistantChat.d.ts.map +1 -1
- package/dist/client/AssistantChat.js +6 -2
- package/dist/client/AssistantChat.js.map +1 -1
- package/dist/client/chat/markdown-renderer.d.ts.map +1 -1
- package/dist/client/chat/markdown-renderer.js +1 -0
- package/dist/client/chat/markdown-renderer.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/org/OrgSwitcher.d.ts +3 -3
- package/dist/client/org/OrgSwitcher.js +2 -2
- package/dist/client/org/OrgSwitcher.js.map +1 -1
- package/dist/client/org/TeamPage.d.ts +6 -1
- package/dist/client/org/TeamPage.d.ts.map +1 -1
- package/dist/client/org/TeamPage.js +2 -2
- package/dist/client/org/TeamPage.js.map +1 -1
- package/dist/client/settings/SettingsTabsPage.d.ts +27 -0
- package/dist/client/settings/SettingsTabsPage.d.ts.map +1 -0
- package/dist/client/settings/SettingsTabsPage.js +108 -0
- package/dist/client/settings/SettingsTabsPage.js.map +1 -0
- package/dist/client/settings/index.d.ts +1 -0
- package/dist/client/settings/index.d.ts.map +1 -1
- package/dist/client/settings/index.js +1 -0
- package/dist/client/settings/index.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/file-upload/index.d.ts +1 -1
- package/dist/file-upload/index.d.ts.map +1 -1
- package/dist/file-upload/index.js +1 -1
- package/dist/file-upload/index.js.map +1 -1
- package/dist/file-upload/registry.d.ts +1 -0
- package/dist/file-upload/registry.d.ts.map +1 -1
- package/dist/file-upload/registry.js +24 -6
- package/dist/file-upload/registry.js.map +1 -1
- package/dist/file-upload/types.d.ts +6 -1
- package/dist/file-upload/types.d.ts.map +1 -1
- package/dist/file-upload/types.js.map +1 -1
- package/dist/integrations/adapters/email.d.ts.map +1 -1
- package/dist/integrations/adapters/email.js +18 -18
- package/dist/integrations/adapters/email.js.map +1 -1
- package/dist/integrations/adapters/slack.d.ts.map +1 -1
- package/dist/integrations/adapters/slack.js +8 -7
- package/dist/integrations/adapters/slack.js.map +1 -1
- package/dist/integrations/adapters/telegram.d.ts.map +1 -1
- package/dist/integrations/adapters/telegram.js +9 -9
- package/dist/integrations/adapters/telegram.js.map +1 -1
- package/dist/integrations/adapters/whatsapp.d.ts.map +1 -1
- package/dist/integrations/adapters/whatsapp.js +10 -9
- package/dist/integrations/adapters/whatsapp.js.map +1 -1
- package/dist/integrations/plugin.d.ts.map +1 -1
- package/dist/integrations/plugin.js +47 -13
- package/dist/integrations/plugin.js.map +1 -1
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/onboarding/default-steps.d.ts.map +1 -1
- package/dist/onboarding/default-steps.js +6 -5
- package/dist/onboarding/default-steps.js.map +1 -1
- package/dist/onboarding/types.d.ts +1 -1
- package/dist/onboarding/types.d.ts.map +1 -1
- package/dist/onboarding/types.js.map +1 -1
- package/dist/org/handlers.js +1 -1
- package/dist/org/handlers.js.map +1 -1
- package/dist/progress/routes.d.ts +1 -1
- package/dist/server/agent-chat-plugin.d.ts.map +1 -1
- package/dist/server/agent-chat-plugin.js +4 -6
- package/dist/server/agent-chat-plugin.js.map +1 -1
- package/dist/server/agent-engine-api-key-route.d.ts +1 -1
- package/dist/server/better-auth-instance.d.ts.map +1 -1
- package/dist/server/better-auth-instance.js +17 -56
- package/dist/server/better-auth-instance.js.map +1 -1
- package/dist/server/core-routes-plugin.d.ts +1 -1
- package/dist/server/core-routes-plugin.d.ts.map +1 -1
- package/dist/server/core-routes-plugin.js +67 -153
- package/dist/server/core-routes-plugin.js.map +1 -1
- package/dist/server/create-server.d.ts +3 -9
- package/dist/server/create-server.d.ts.map +1 -1
- package/dist/server/create-server.js +37 -91
- package/dist/server/create-server.js.map +1 -1
- package/dist/server/email-actions.d.ts +2 -3
- package/dist/server/email-actions.d.ts.map +1 -1
- package/dist/server/email-actions.js +3 -6
- package/dist/server/email-actions.js.map +1 -1
- package/dist/server/email.d.ts +3 -3
- package/dist/server/email.d.ts.map +1 -1
- package/dist/server/email.js +40 -19
- package/dist/server/email.js.map +1 -1
- package/dist/server/index.d.ts +3 -3
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +3 -3
- package/dist/server/index.js.map +1 -1
- package/dist/server/scoped-key-storage.d.ts +22 -0
- package/dist/server/scoped-key-storage.d.ts.map +1 -0
- package/dist/server/scoped-key-storage.js +152 -0
- package/dist/server/scoped-key-storage.js.map +1 -0
- package/dist/shared/agent-env.d.ts +3 -3
- package/dist/shared/agent-env.d.ts.map +1 -1
- package/dist/shared/agent-env.js +3 -3
- package/dist/shared/agent-env.js.map +1 -1
- package/dist/sharing/actions/share-resource.js +1 -1
- package/dist/sharing/actions/share-resource.js.map +1 -1
- package/dist/styles/agent-native.css +55 -3
- package/dist/templates/workspace-root/AGENTS.md +3 -2
- package/dist/templates/workspace-root/README.md +1 -1
- package/dist/templates/workspace-root/scripts/repair-workspace-org.ts +29 -90
- package/dist/terminal/pty-server.d.ts.map +1 -1
- package/dist/terminal/pty-server.js +3 -36
- package/dist/terminal/pty-server.js.map +1 -1
- package/dist/triggers/dispatcher.js +1 -1
- package/dist/triggers/dispatcher.js.map +1 -1
- package/docs/content/file-uploads.md +11 -4
- package/docs/content/locales/ar-SA/multi-app-workspace.md +3 -3
- package/docs/content/locales/de-DE/multi-app-workspace.md +3 -3
- package/docs/content/locales/es-ES/multi-app-workspace.md +3 -3
- package/docs/content/locales/fr-FR/multi-app-workspace.md +3 -3
- package/docs/content/locales/hi-IN/multi-app-workspace.md +3 -3
- package/docs/content/locales/ja-JP/multi-app-workspace.md +3 -3
- package/docs/content/locales/ko-KR/multi-app-workspace.md +3 -3
- package/docs/content/locales/pt-BR/multi-app-workspace.md +3 -3
- package/docs/content/locales/zh-CN/multi-app-workspace.md +3 -3
- package/docs/content/locales/zh-TW/multi-app-workspace.md +3 -3
- package/docs/content/multi-app-workspace.md +3 -3
- package/docs/content/template-clips.md +14 -5
- package/package.json +1 -1
- package/src/templates/workspace-root/AGENTS.md +3 -2
- package/src/templates/workspace-root/README.md +1 -1
- package/src/templates/workspace-root/scripts/repair-workspace-org.ts +29 -90
- package/corpus/core/src/server/env-var-writes.ts +0 -16
- package/corpus/templates/analytics/app/pages/Team.tsx +0 -9
- package/corpus/templates/calendar/app/pages/Team.tsx +0 -12
- package/corpus/templates/mail/app/pages/Team.tsx +0 -17
- package/dist/server/env-var-writes.d.ts +0 -10
- package/dist/server/env-var-writes.d.ts.map +0 -1
- package/dist/server/env-var-writes.js +0 -18
- package/dist/server/env-var-writes.js.map +0 -1
|
@@ -3,10 +3,12 @@ import {
|
|
|
3
3
|
callAction,
|
|
4
4
|
ChangelogSettingsCard,
|
|
5
5
|
LanguagePicker,
|
|
6
|
+
SettingsTabsPage,
|
|
6
7
|
openAgentSettings,
|
|
7
8
|
type AppearancePresetId,
|
|
8
9
|
useT,
|
|
9
10
|
} from "@agent-native/core/client";
|
|
11
|
+
import { TeamPage } from "@agent-native/core/client/org";
|
|
10
12
|
import {
|
|
11
13
|
IconBrandZoom,
|
|
12
14
|
IconExternalLink,
|
|
@@ -153,292 +155,323 @@ export default function Settings() {
|
|
|
153
155
|
}
|
|
154
156
|
|
|
155
157
|
return (
|
|
156
|
-
<
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
158
|
+
<SettingsTabsPage
|
|
159
|
+
generalLabel={t("settings.general")}
|
|
160
|
+
teamLabel={t("navigation.team")}
|
|
161
|
+
general={
|
|
162
|
+
<div className="mx-auto max-w-2xl space-y-6 pb-12">
|
|
163
|
+
<p className="text-sm text-muted-foreground">
|
|
164
|
+
{t("settings.description")}
|
|
165
|
+
</p>
|
|
163
166
|
|
|
164
|
-
|
|
167
|
+
<Card>
|
|
168
|
+
<CardHeader>
|
|
169
|
+
<CardTitle className="text-lg">
|
|
170
|
+
{t("settings.languageTitle")}
|
|
171
|
+
</CardTitle>
|
|
172
|
+
<CardDescription>
|
|
173
|
+
{t("settings.languageDescription")}
|
|
174
|
+
</CardDescription>
|
|
175
|
+
</CardHeader>
|
|
176
|
+
<CardContent className="max-w-xs space-y-1.5">
|
|
177
|
+
<Label>{t("settings.languageLabel")}</Label>
|
|
178
|
+
<LanguagePicker label={t("settings.languageLabel")} />
|
|
179
|
+
</CardContent>
|
|
180
|
+
</Card>
|
|
165
181
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
<CardTitle className="text-lg">{t("settings.agentTitle")}</CardTitle>
|
|
182
|
-
<CardDescription>{t("settings.agentDescription")}</CardDescription>
|
|
183
|
-
</CardHeader>
|
|
184
|
-
<CardContent>
|
|
185
|
-
<Button variant="outline" onClick={() => openAgentSettings()}>
|
|
186
|
-
{t("settings.openAgentSettings")}
|
|
187
|
-
</Button>
|
|
188
|
-
</CardContent>
|
|
189
|
-
</Card>
|
|
182
|
+
<Card>
|
|
183
|
+
<CardHeader>
|
|
184
|
+
<CardTitle className="text-lg">
|
|
185
|
+
{t("settings.agentTitle")}
|
|
186
|
+
</CardTitle>
|
|
187
|
+
<CardDescription>
|
|
188
|
+
{t("settings.agentDescription")}
|
|
189
|
+
</CardDescription>
|
|
190
|
+
</CardHeader>
|
|
191
|
+
<CardContent>
|
|
192
|
+
<Button variant="outline" onClick={() => openAgentSettings()}>
|
|
193
|
+
{t("settings.openAgentSettings")}
|
|
194
|
+
</Button>
|
|
195
|
+
</CardContent>
|
|
196
|
+
</Card>
|
|
190
197
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
<
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
{googleStatus.data.accounts
|
|
212
|
-
|
|
213
|
-
|
|
198
|
+
{/* Google Calendar Connection */}
|
|
199
|
+
<Card>
|
|
200
|
+
<CardHeader>
|
|
201
|
+
<CardTitle className="text-lg">
|
|
202
|
+
{t("settings.googleCalendar")}
|
|
203
|
+
</CardTitle>
|
|
204
|
+
<CardDescription>
|
|
205
|
+
{t("settings.googleDescription")}
|
|
206
|
+
</CardDescription>
|
|
207
|
+
</CardHeader>
|
|
208
|
+
<CardContent>
|
|
209
|
+
<div className="flex items-center justify-between">
|
|
210
|
+
<div className="flex items-center gap-3">
|
|
211
|
+
{googleStatus.data?.connected ? (
|
|
212
|
+
<>
|
|
213
|
+
<IconCircleCheck className="h-5 w-5 text-emerald-600 dark:text-emerald-400" />
|
|
214
|
+
<div>
|
|
215
|
+
<p className="text-sm font-medium">
|
|
216
|
+
{t("common.connected")}
|
|
217
|
+
</p>
|
|
218
|
+
{googleStatus.data.accounts?.length > 0 && (
|
|
219
|
+
<p className="text-xs text-muted-foreground">
|
|
220
|
+
{googleStatus.data.accounts
|
|
221
|
+
.map((a) => a.email)
|
|
222
|
+
.join(", ")}
|
|
223
|
+
</p>
|
|
224
|
+
)}
|
|
225
|
+
</div>
|
|
226
|
+
</>
|
|
227
|
+
) : (
|
|
228
|
+
<>
|
|
229
|
+
<IconCircleX className="h-5 w-5 text-muted-foreground" />
|
|
230
|
+
<p className="text-sm text-muted-foreground">
|
|
231
|
+
{t("common.notConnected")}
|
|
214
232
|
</p>
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
) : (
|
|
219
|
-
<>
|
|
220
|
-
<IconCircleX className="h-5 w-5 text-muted-foreground" />
|
|
221
|
-
<p className="text-sm text-muted-foreground">
|
|
222
|
-
{t("common.notConnected")}
|
|
223
|
-
</p>
|
|
224
|
-
</>
|
|
225
|
-
)}
|
|
226
|
-
</div>
|
|
233
|
+
</>
|
|
234
|
+
)}
|
|
235
|
+
</div>
|
|
227
236
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
237
|
+
{googleStatus.data?.connected ? (
|
|
238
|
+
<Button
|
|
239
|
+
variant="outline"
|
|
240
|
+
size="sm"
|
|
241
|
+
onClick={handleDisconnect}
|
|
242
|
+
disabled={disconnectGoogle.isPending}
|
|
243
|
+
>
|
|
244
|
+
<IconUnlink className="me-1.5 h-3.5 w-3.5" />
|
|
245
|
+
{t("common.disconnect")}
|
|
246
|
+
</Button>
|
|
247
|
+
) : (
|
|
248
|
+
<Button
|
|
249
|
+
size="sm"
|
|
250
|
+
onClick={handleConnect}
|
|
251
|
+
disabled={
|
|
252
|
+
authUrl.isLoading ||
|
|
253
|
+
authUrl.isFetching ||
|
|
254
|
+
isGoogleDesktopAuthPending
|
|
255
|
+
}
|
|
256
|
+
>
|
|
257
|
+
<IconExternalLink className="me-1.5 h-3.5 w-3.5" />
|
|
258
|
+
{t("common.connect")}
|
|
259
|
+
</Button>
|
|
260
|
+
)}
|
|
261
|
+
</div>
|
|
262
|
+
</CardContent>
|
|
263
|
+
</Card>
|
|
255
264
|
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
265
|
+
<Card>
|
|
266
|
+
<CardHeader>
|
|
267
|
+
<CardTitle className="text-lg">Zoom</CardTitle>
|
|
268
|
+
<CardDescription>{t("settings.zoomDescription")}</CardDescription>
|
|
269
|
+
</CardHeader>
|
|
270
|
+
<CardContent>
|
|
271
|
+
<div className="flex items-center justify-between gap-4">
|
|
272
|
+
<div className="flex min-w-0 items-center gap-3">
|
|
273
|
+
{zoomStatus.data?.connected ? (
|
|
274
|
+
<>
|
|
275
|
+
<IconCircleCheck className="h-5 w-5 shrink-0 text-emerald-600 dark:text-emerald-400" />
|
|
276
|
+
<div className="min-w-0">
|
|
277
|
+
<p className="text-sm font-medium">
|
|
278
|
+
{t("common.connected")}
|
|
279
|
+
</p>
|
|
280
|
+
{zoomStatus.data.accounts?.length > 0 && (
|
|
281
|
+
<p className="truncate text-xs text-muted-foreground">
|
|
282
|
+
{zoomStatus.data.accounts
|
|
283
|
+
.map((a) => a.email || a.displayName || a.id)
|
|
284
|
+
.join(", ")}
|
|
285
|
+
</p>
|
|
286
|
+
)}
|
|
287
|
+
</div>
|
|
288
|
+
</>
|
|
289
|
+
) : (
|
|
290
|
+
<>
|
|
291
|
+
<IconCircleX className="h-5 w-5 shrink-0 text-muted-foreground" />
|
|
292
|
+
<div className="min-w-0">
|
|
293
|
+
<p className="text-sm text-muted-foreground">
|
|
294
|
+
{zoomStatus.data?.configured === false
|
|
295
|
+
? t("settings.zoomNotConfigured")
|
|
296
|
+
: t("common.notConnected")}
|
|
297
|
+
</p>
|
|
298
|
+
{zoomStatus.data?.configured === false && (
|
|
299
|
+
<p className="text-xs text-muted-foreground">
|
|
300
|
+
{t("settings.zoomCredentialsPrompt")}
|
|
301
|
+
</p>
|
|
302
|
+
)}
|
|
303
|
+
</div>
|
|
304
|
+
</>
|
|
305
|
+
)}
|
|
306
|
+
</div>
|
|
298
307
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
308
|
+
{zoomStatus.data?.connected ? (
|
|
309
|
+
<Button
|
|
310
|
+
variant="outline"
|
|
311
|
+
size="sm"
|
|
312
|
+
onClick={handleDisconnectZoom}
|
|
313
|
+
disabled={disconnectZoom.isPending}
|
|
314
|
+
>
|
|
315
|
+
<IconUnlink className="me-1.5 h-3.5 w-3.5" />
|
|
316
|
+
{t("common.disconnect")}
|
|
317
|
+
</Button>
|
|
318
|
+
) : (
|
|
319
|
+
<Button
|
|
320
|
+
size="sm"
|
|
321
|
+
onClick={handleConnectZoom}
|
|
322
|
+
disabled={
|
|
323
|
+
connectZoom.isPending ||
|
|
324
|
+
zoomStatus.data?.configured === false
|
|
325
|
+
}
|
|
326
|
+
>
|
|
327
|
+
<IconBrandZoom className="me-1.5 h-3.5 w-3.5" />
|
|
328
|
+
{t("common.connect")}
|
|
329
|
+
</Button>
|
|
330
|
+
)}
|
|
331
|
+
</div>
|
|
332
|
+
</CardContent>
|
|
333
|
+
</Card>
|
|
324
334
|
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
335
|
+
{/* Google Setup Wizard */}
|
|
336
|
+
{!googleStatus.data?.connected && (
|
|
337
|
+
<Card>
|
|
338
|
+
<CardHeader>
|
|
339
|
+
<CardTitle className="text-lg">
|
|
340
|
+
{t("settings.connectGoogleCalendar")}
|
|
341
|
+
</CardTitle>
|
|
342
|
+
<CardDescription>
|
|
343
|
+
{t("settings.connectGoogleDescription")}
|
|
344
|
+
</CardDescription>
|
|
345
|
+
</CardHeader>
|
|
346
|
+
<CardContent>
|
|
347
|
+
<GoogleSetupWizard />
|
|
348
|
+
</CardContent>
|
|
349
|
+
</Card>
|
|
350
|
+
)}
|
|
341
351
|
|
|
342
|
-
|
|
352
|
+
<Separator />
|
|
343
353
|
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
<
|
|
353
|
-
|
|
354
|
-
|
|
354
|
+
{/* General Settings */}
|
|
355
|
+
<Card>
|
|
356
|
+
<CardHeader>
|
|
357
|
+
<CardTitle className="text-lg">{t("settings.general")}</CardTitle>
|
|
358
|
+
<CardDescription>
|
|
359
|
+
{t("settings.generalDescription")}
|
|
360
|
+
</CardDescription>
|
|
361
|
+
</CardHeader>
|
|
362
|
+
<CardContent className="space-y-4">
|
|
363
|
+
<div className="space-y-2">
|
|
364
|
+
<Label htmlFor="timezone">{t("settings.timezone")}</Label>
|
|
365
|
+
<TimezoneCombobox value={timezone} onChange={setTimezone} />
|
|
366
|
+
</div>
|
|
355
367
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
368
|
+
<div className="space-y-2">
|
|
369
|
+
<Label htmlFor="booking-title">
|
|
370
|
+
{t("settings.bookingTitleLabel")}
|
|
371
|
+
</Label>
|
|
372
|
+
<Input
|
|
373
|
+
id="booking-title"
|
|
374
|
+
value={bookingTitle}
|
|
375
|
+
onChange={(e) => setBookingTitle(e.target.value)}
|
|
376
|
+
placeholder={t("settings.bookingTitlePlaceholder")}
|
|
377
|
+
/>
|
|
378
|
+
<p className="text-xs text-muted-foreground">
|
|
379
|
+
{t("settings.bookingTitleHelp")}
|
|
380
|
+
</p>
|
|
381
|
+
</div>
|
|
370
382
|
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
383
|
+
<div className="space-y-2">
|
|
384
|
+
<Label htmlFor="booking-desc">
|
|
385
|
+
{t("settings.bookingDescriptionLabel")}
|
|
386
|
+
</Label>
|
|
387
|
+
<Textarea
|
|
388
|
+
id="booking-desc"
|
|
389
|
+
value={bookingDescription}
|
|
390
|
+
onChange={(e) => setBookingDescription(e.target.value)}
|
|
391
|
+
placeholder={t("settings.bookingDescriptionPlaceholder")}
|
|
392
|
+
rows={2}
|
|
393
|
+
/>
|
|
394
|
+
<p className="text-xs text-muted-foreground">
|
|
395
|
+
{t("settings.bookingDescriptionHelp")}
|
|
396
|
+
</p>
|
|
397
|
+
</div>
|
|
386
398
|
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
399
|
+
<div className="space-y-2">
|
|
400
|
+
<Label htmlFor="default-duration">
|
|
401
|
+
{t("settings.defaultDurationLabel")}
|
|
402
|
+
</Label>
|
|
403
|
+
<Input
|
|
404
|
+
id="default-duration"
|
|
405
|
+
type="number"
|
|
406
|
+
value={defaultDuration}
|
|
407
|
+
onChange={(e) => setDefaultDuration(Number(e.target.value))}
|
|
408
|
+
min={5}
|
|
409
|
+
max={480}
|
|
410
|
+
/>
|
|
411
|
+
<p className="text-xs text-muted-foreground">
|
|
412
|
+
{t("settings.defaultDurationHelp")}
|
|
413
|
+
</p>
|
|
414
|
+
</div>
|
|
403
415
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
416
|
+
<div className="flex flex-wrap gap-2">
|
|
417
|
+
<Button
|
|
418
|
+
onClick={handleSave}
|
|
419
|
+
disabled={updateSettings.isPending}
|
|
420
|
+
>
|
|
421
|
+
{updateSettings.isPending
|
|
422
|
+
? t("common.saving")
|
|
423
|
+
: t("settings.saveSettings")}
|
|
424
|
+
</Button>
|
|
425
|
+
<Button asChild variant="outline">
|
|
426
|
+
<Link to="/booking-links">
|
|
427
|
+
<IconLink className="me-1.5 h-3.5 w-3.5" />
|
|
428
|
+
{t("navigation.bookingLinks")}
|
|
429
|
+
</Link>
|
|
430
|
+
</Button>
|
|
431
|
+
</div>
|
|
432
|
+
</CardContent>
|
|
433
|
+
</Card>
|
|
419
434
|
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
435
|
+
{/* Appearance */}
|
|
436
|
+
<Card>
|
|
437
|
+
<CardHeader>
|
|
438
|
+
<CardTitle className="text-lg">
|
|
439
|
+
{t("settings.appearance")}
|
|
440
|
+
</CardTitle>
|
|
441
|
+
<CardDescription>
|
|
442
|
+
{t("settings.appearanceDescription")}
|
|
443
|
+
</CardDescription>
|
|
444
|
+
</CardHeader>
|
|
445
|
+
<CardContent>
|
|
446
|
+
<AppearancePicker
|
|
447
|
+
onChange={(preset: AppearancePresetId) => {
|
|
448
|
+
// Persist server-side so the choice survives reload and syncs
|
|
449
|
+
// across devices; the local UI has already updated optimistically.
|
|
450
|
+
callAction(
|
|
451
|
+
"change-appearance" as any,
|
|
452
|
+
{ preset } as any,
|
|
453
|
+
).catch(() => {
|
|
454
|
+
// Server write failed; the local DOM change still stands.
|
|
455
|
+
});
|
|
456
|
+
}}
|
|
457
|
+
/>
|
|
458
|
+
</CardContent>
|
|
459
|
+
</Card>
|
|
460
|
+
</div>
|
|
461
|
+
}
|
|
462
|
+
team={
|
|
463
|
+
<div className="mx-auto w-full max-w-2xl">
|
|
464
|
+
<TeamPage
|
|
465
|
+
showTitle={false}
|
|
466
|
+
createOrgDescription="Set up a team to share calendars and booking links with your colleagues."
|
|
439
467
|
/>
|
|
440
|
-
</
|
|
441
|
-
|
|
442
|
-
|
|
468
|
+
</div>
|
|
469
|
+
}
|
|
470
|
+
whatsNew={
|
|
471
|
+
<div className="mx-auto w-full max-w-2xl">
|
|
472
|
+
<ChangelogSettingsCard markdown={changelog} />
|
|
473
|
+
</div>
|
|
474
|
+
}
|
|
475
|
+
/>
|
|
443
476
|
);
|
|
444
477
|
}
|
|
@@ -1,26 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { useMemo } from "react";
|
|
1
|
+
import { Navigate } from "react-router";
|
|
3
2
|
|
|
4
|
-
import { useAppHeaderControls } from "@/components/layout/AppLayout";
|
|
5
3
|
import { messagesByLocale } from "@/i18n-data";
|
|
6
|
-
import Team from "@/pages/Team";
|
|
7
4
|
|
|
8
5
|
export function meta() {
|
|
9
6
|
return [{ title: messagesByLocale["en-US"].routeTitles.team }];
|
|
10
7
|
}
|
|
11
8
|
|
|
12
9
|
export default function TeamRoute() {
|
|
13
|
-
|
|
14
|
-
const controls = useMemo(
|
|
15
|
-
() => ({
|
|
16
|
-
left: (
|
|
17
|
-
<h1 className="text-lg font-semibold tracking-tight truncate">
|
|
18
|
-
{t("navigation.team")}
|
|
19
|
-
</h1>
|
|
20
|
-
),
|
|
21
|
-
}),
|
|
22
|
-
[t],
|
|
23
|
-
);
|
|
24
|
-
useAppHeaderControls(controls);
|
|
25
|
-
return <Team />;
|
|
10
|
+
return <Navigate to="/settings#team" replace />;
|
|
26
11
|
}
|