Skip to content

Commit

Permalink
options model injection fix, release
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Dec 21, 2024
1 parent b21fb9f commit c8dbb26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
17 changes: 0 additions & 17 deletions Power Editor/ContentView.swift

This file was deleted.

6 changes: 5 additions & 1 deletion Power Editor/PowerEditorApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ import SwiftUI
struct PowerEditorApp: App {
var body: some Scene {
WindowGroup {
MainView()
MainView().environmentObject(OptionsModel())
}
}
}

#Preview {
MainView().environmentObject(OptionsModel())
}

0 comments on commit c8dbb26

Please sign in to comment.