Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Bunn committed Oct 23, 2024
1 parent 2ce137f commit 788f9af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DuckDuckGo/AIChat/AIChatDebugMenu.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import AppKit
final class AIChatDebugMenu: NSMenu {
init() {
super.init(title: "")

Check failure on line 24 in DuckDuckGo/AIChat/AIChatDebugMenu.swift

View workflow job for this annotation

GitHub Actions / SwiftLint

Lines should not have trailing whitespace (trailing_whitespace)
buildItems {
NSMenuItem(title: "Reset toolbar onboarding", action: #selector(resetToolbarOnboarding), target: self)
NSMenuItem(title: "Show toolbar onboarding", action: #selector(showToolbarOnboarding), target: self)
Expand All @@ -35,7 +35,7 @@ final class AIChatDebugMenu: NSMenu {
@objc func resetToolbarOnboarding() {
DefaultAIChatPreferencesStorage().reset()
}

Check failure on line 38 in DuckDuckGo/AIChat/AIChatDebugMenu.swift

View workflow job for this annotation

GitHub Actions / SwiftLint

Lines should not have trailing whitespace (trailing_whitespace)
@objc func showToolbarOnboarding() {
var storage = DefaultAIChatPreferencesStorage()
storage.didDisplayAIChatToolbarOnboarding = false
Expand Down

0 comments on commit 788f9af

Please sign in to comment.