Task attempt 2516676f-e05c-4f2b-906c-f4a882d5f47a - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-21 23:28:24 +01:00
parent 4a47c50868
commit dd44d19f8d
6 changed files with 84 additions and 1 deletions

View File

@@ -237,6 +237,19 @@ export function Settings() {
</p>
</div>
</div>
<div className="flex items-center space-x-2">
<Checkbox
id="push-notifications"
checked={config.push_notifications}
onCheckedChange={(checked: boolean) => updateConfig({ push_notifications: checked })}
/>
<div className="space-y-0.5">
<Label htmlFor="push-notifications" className="cursor-pointer">Push Notifications (macOS)</Label>
<p className="text-sm text-muted-foreground">
Show system notifications when task attempts finish running.
</p>
</div>
</div>
</CardContent>
</Card>