Add pointer cursor to Generate insights button

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 22:17:35 -04:00
parent 2dae000342
commit e3ac732b1b

View File

@@ -198,7 +198,7 @@ export function HomeDashboard() {
type="button" type="button"
onClick={() => void handleGenerateInsights()} onClick={() => void handleGenerateInsights()}
disabled={insightBusy} disabled={insightBusy}
className="rounded-full bg-stone-950 px-5 py-3 text-sm font-semibold text-white transition hover:bg-stone-800 disabled:cursor-not-allowed disabled:bg-stone-400 dark:bg-stone-100 dark:text-stone-900 dark:hover:bg-white dark:disabled:bg-stone-600 dark:disabled:text-stone-400" className="cursor-pointer rounded-full bg-stone-950 px-5 py-3 text-sm font-semibold text-white transition hover:bg-stone-800 disabled:cursor-not-allowed disabled:bg-stone-400 dark:bg-stone-100 dark:text-stone-900 dark:hover:bg-white dark:disabled:bg-stone-600 dark:disabled:text-stone-400"
> >
{insightBusy ? "Generating..." : "Generate insights"} {insightBusy ? "Generating..." : "Generate insights"}
</button> </button>