Skip to content

Commit

Permalink
Made SwiftVueError errorDescription non-optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziggydave1 committed Aug 1, 2024
1 parent f9083dc commit c6f87fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/SwiftVue/Error/Error.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public enum SwiftVueError: Error, Sendable {
case notImplemented(String)
case other(String)

public var errorDescription: String? {
public var errorDescription: String {
switch self {
case .invalidResponse:
return "Invalid response"
Expand Down

0 comments on commit c6f87fc

Please sign in to comment.