Skip to content

Commit

Permalink
Fix invalid ACLs
Browse files Browse the repository at this point in the history
  • Loading branch information
woxtu committed Sep 3, 2024
1 parent 7896b10 commit 924bf8e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Theme
struct SwiftUIContributorView: View {
private let store: StoreOf<ContributorReducer>

public init(store: StoreOf<ContributorReducer>) {
init(store: StoreOf<ContributorReducer>) {
self.store = store
}

Expand Down
9 changes: 5 additions & 4 deletions app-ios/Sources/TimetableFeature/TimetableListView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public struct TimetableView: View {
struct TimetableListView: View {
private let store: StoreOf<TimetableReducer>

public init(store: StoreOf<TimetableReducer>) {
init(store: StoreOf<TimetableReducer>) {
self.store = store
}

Expand All @@ -110,7 +110,8 @@ struct TimetableListView: View {

struct TimetableGridView: View {
private let store: StoreOf<TimetableReducer>
public init(store: StoreOf<TimetableReducer>) {

init(store: StoreOf<TimetableReducer>) {
self.store = store
}

Expand Down Expand Up @@ -204,7 +205,7 @@ struct TimeGroupMiniList: View {
}

struct DashedDivider: View {
public let axis: Axis
let axis: Axis

var body: some View {
let shape = LineShape(axis: axis)
Expand All @@ -219,7 +220,7 @@ struct DashedDivider: View {
}

struct LineShape: Shape {
public let axis: Axis
let axis: Axis

func path(in rect: CGRect) -> Path {
var path = Path()
Expand Down

0 comments on commit 924bf8e

Please sign in to comment.