Skip to content

Commit

Permalink
chore: fix sample apps compiling after breaking change
Browse files Browse the repository at this point in the history
commit-id:d322acb4
  • Loading branch information
levibostian committed May 6, 2024
1 parent 159833c commit df057df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/ios/Source/View.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ struct ContentView: View {
Wendy.shared.addTask(tag: WendyTasks.addGroceryListItem, data: GroceryStoreItem(price: 4, name: "Bologna"))
Wendy.shared.addTask(tag: WendyTasks.addGroceryListItem, data: GroceryStoreItem(price: 3, name: "American cheese"))

Wendy.shared.runTasks(onComplete: nil)
Task {
await Wendy.shared.runTasks()
}
}

func newTaskAdded(_ task: PendingTask) {}
Expand Down

0 comments on commit df057df

Please sign in to comment.