native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #141 from supabitapp/fix-warning

Fix code changes after `make check` produce warnings

authored by

khoi and committed by
GitHub
5c9f7bbd a4705ed3

+3 -2
+1 -1
supacode/App/ContentView.swift
··· 164 164 text: $script, 165 165 isMonospaced: true 166 166 ) 167 - .frame(minHeight: 160) 167 + .frame(minHeight: 160) 168 168 if script.isEmpty { 169 169 Text("npm run dev") 170 170 .foregroundStyle(.secondary)
+2 -1
supacode/Clients/Notifications/SystemNotificationClient.swift
··· 8 8 _ center: UNUserNotificationCenter, 9 9 willPresent notification: UNNotification 10 10 ) async -> UNNotificationPresentationOptions { 11 - [.badge, .sound, .banner] 11 + await Task.yield() 12 + return [.badge, .sound, .banner] 12 13 } 13 14 } 14 15