Created
July 4, 2025 11:16
-
-
Save jacobsapps/8b96e08c3ddb5fa6b2be4fec8682bf52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // GenerationView.swift | |
| @Environment(\.modelContext) private var context | |
| // ... | |
| Button { | |
| let entity = CardEntity.from(card) | |
| context.insert(entity) | |
| try? context.save() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment