Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run SwiftFormat #7

Merged
merged 2 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Features/Sources/APIClient/APIClient.swift
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Dependencies
import DependenciesMacros
import Foundation
import Models
import IssueReporting
import Models

@DependencyClient
public struct APIClient: Sendable {
Expand All @@ -23,7 +23,7 @@ public extension DependencyValues {
}

extension APIClient: DependencyKey {
nonisolated(unsafe) public private(set) static var apiKey: APIKey?
public private(set) nonisolated(unsafe) static var apiKey: APIKey?

public static let liveValue = APIClient(
apod: {
Expand Down
2 changes: 1 addition & 1 deletion Features/Sources/Settings/String.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extension String {
var masked: String? {
guard let first = self.first else {
guard let first else {
return nil
}
return "\(first)***"
Expand Down
Loading