diff --git a/tabatago-swift/TabataGoWatch/Complications/TabataGoComplication.swift b/tabatago-swift/TabataGoWatch/Complications/TabataGoComplication.swift index a07d964..b9abbbc 100644 --- a/tabatago-swift/TabataGoWatch/Complications/TabataGoComplication.swift +++ b/tabatago-swift/TabataGoWatch/Complications/TabataGoComplication.swift @@ -127,7 +127,9 @@ struct TabataGoComplication: Widget { .supportedFamilies([ .accessoryCircular, .accessoryRectangular, +#if os(watchOS) .accessoryCorner +#endif ]) } } @@ -142,8 +144,10 @@ struct TabataComplicationEntryView: View { CircularComplicationView(entry: entry) case .accessoryRectangular: RectangularComplicationView(entry: entry) +#if os(watchOS) case .accessoryCorner: CornerComplicationView(entry: entry) +#endif default: CircularComplicationView(entry: entry) }