Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
inamiy committed Jun 12, 2024
1 parent 55d7f7b commit fe41bb4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/Home/ExampleList/Example.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import SwiftUI
import ActomatonUI

protocol Example
protocol Example: Sendable
{
var exampleTitle: String { get }
var exampleIcon: Image { get }
Expand Down
1 change: 0 additions & 1 deletion Sources/Home/Home.State.Current.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ extension State
case physics(PhysicsRoot.State)
case downloader(Downloader.State)

@MainActor
var example: Example
{
switch self {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ extension PhysicsRoot.State
case pendulum(World.State<Bob>)
case doublePendulum(World.State<Bob>)

@MainActor
var example: Example
{
switch self {
Expand Down

0 comments on commit fe41bb4

Please sign in to comment.