Skip to content

Commit 7f41d78

Browse files
leogdionclaude
andcommitted
Fix PR review issues and CI linting failures
Addresses CodeRabbit review comments by removing orphaned documentation line and fixes CI workflow to properly detect cache restoration via restore-keys, preventing unnecessary mint installation failures. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 259fd07 commit 7f41d78

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/RadiantKit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ jobs:
213213
restore-keys: |
214214
${{ runner.os }}-mint-
215215
- name: Install mint
216-
if: steps.cache-mint.outputs.cache-hit != 'true'
216+
if: steps.cache-mint.outputs.cache-hit == ''
217217
run: |
218218
git clone https://github.com/yonaskolb/Mint.git
219219
cd Mint

Sources/RadiantKit/AppKit/NSWindowAdaptorModifier.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ import Foundation
5353
/// Creates the `NSView` that will be used to access the underlying
5454
/// `NSWindow`.
5555
/// - Parameter _: The context provided by the SwiftUI framework.
56-
/// -
5756
/// - Returns: An `NSView` instance.
5857
fileprivate func makeNSView(context _: Self.Context) -> NSView {
5958
let view = NSView()

0 commit comments

Comments
 (0)