bug report tool — screenshot, console logs, and context sent to discord

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 18:09:51 +00:00
co-authored by Claude Opus 4.6
parent 30f06e91e4
commit 74ace56120
10 changed files with 315 additions and 0 deletions
@@ -3,6 +3,7 @@ import { Background } from './Background';
import { Header } from './Header';
import { Dock, ALL_DOCK_ITEMS, DEFAULT_DOCK_PATHS } from './Dock';
import { useIsTouch } from './useIsTouch';
import { BugReportButton } from './BugReport/BugReportButton';
type DashboardLayoutProps = {
children?: React.ReactNode;
@@ -21,6 +22,7 @@ export function DashboardLayout({ children }: DashboardLayoutProps) {
{children}
</div>
</section>
<BugReportButton />
</div>
);
};