Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/main/demo/fake-inbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ const RICH_HTML_EMAIL_BODY = `<html>
</ul>

<p>You can view the full dashboard here: <a href="https://dashboard.example.com/q3-report" style="color: #1a73e8;">Q3 Report Dashboard</a></p>
<p>Backup link: <a href="https://dashboard.example.com/q3-report">Dashboard mirror</a>. Questions? <a href="mailto:analytics@example.com">Email analytics</a>.</p>

<div style="margin-top: 24px; padding-top: 16px; border-top: 1px solid #ddd;">
<p style="margin: 0;">Best regards,</p>
Expand Down
9 changes: 9 additions & 0 deletions src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { SettingsPanel } from "./components/SettingsPanel";
import { SetupWizard } from "./components/SetupWizard";
import { SearchBar } from "./components/SearchBar";
import { CommandPalette } from "./components/CommandPalette";
import { OpenLinksAttachmentsPalette } from "./components/OpenLinksAttachmentsPalette";
import { AgentCommandPalette } from "./components/AgentCommandPalette";
import { AgentsSidebar } from "./components/AgentsSidebar";
import { ShortcutHelp } from "./components/ShortcutHelp";
Expand Down Expand Up @@ -644,6 +645,7 @@ export default function App() {
const composeState = useAppStore((s) => s.composeState);
const isSearchOpen = useAppStore((s) => s.isSearchOpen);
const isCommandPaletteOpen = useAppStore((s) => s.isCommandPaletteOpen);
const isOpenLinksAttachmentsOpen = useAppStore((s) => s.isOpenLinksAttachmentsOpen);
const isFindBarOpen = useAppStore((s) => s.isFindBarOpen);
const isAgentPaletteOpen = useAppStore((s) => s.isAgentPaletteOpen);
const isAgentsSidebarOpen = useAppStore((s) => s.isAgentsSidebarOpen);
Expand Down Expand Up @@ -676,6 +678,7 @@ export default function App() {
const openSearch = useAppStore((s) => s.openSearch);
const closeSearch = useAppStore((s) => s.closeSearch);
const closeCommandPalette = useAppStore((s) => s.closeCommandPalette);
const closeLinksAttachments = useAppStore((s) => s.closeLinksAttachments);
const setAgentPaletteOpen = useAppStore((s) => s.setAgentPaletteOpen);
const setViewMode = useAppStore((s) => s.setViewMode);
const _clearActiveSearch = useAppStore((s) => s.clearActiveSearch);
Expand Down Expand Up @@ -2288,6 +2291,12 @@ export default function App() {
}}
/>

{/* Open Links & Attachments Palette */}
<OpenLinksAttachmentsPalette
isOpen={isOpenLinksAttachmentsOpen}
onClose={closeLinksAttachments}
/>

{/* Agent Command Palette */}
<AgentCommandPalette
isOpen={isAgentPaletteOpen}
Expand Down
Loading