Applies verified fixes from deep audit (concurrency, performance, security, accessibility), standardizes CRUD form buttons to Add/Save pattern, removes .drawingGroup() that broke search bar TextFields, and converts vulnerable .sheet(isPresented:) + if-let patterns to safe presentation to prevent blank white modals. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
210 B
Swift
17 lines
210 B
Swift
//
|
|
// CaseraBundle.swift
|
|
// Casera
|
|
//
|
|
// Created by Trey Tartt on 11/5/25.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct CaseraBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
Casera()
|
|
}
|
|
}
|