Skip to content

Commit

Permalink
chore: hardcode the supportsPHPicker() name to fix CI warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoEllet committed Nov 17, 2024
1 parent cf0f045 commit 277a923
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class ImagePickerImpl: NSObject, ImagePickerApi {
PigeonError(
code: "UNSUPPORTED_PHPICKER",
message:
"PHPicker is only supported on macOS 13.0 or newer. Use \(supportsPHPicker) to check.",
"PHPicker is only supported on macOS 13.0 or newer. Use `supportsPHPicker()` to check.",
details: nil)))
return
}
Expand Down Expand Up @@ -74,7 +74,7 @@ class ImagePickerImpl: NSObject, ImagePickerApi {
PigeonError(
code: "UNSUPPORTED_PHPICKER",
message:
"PHPicker is only supported on macOS 13.0 or newer. Use \(supportsPHPicker) to check.",
"PHPicker is only supported on macOS 13.0 or newer. Use `supportsPHPicker()` to check.",
details: nil)))
return
}
Expand Down Expand Up @@ -117,7 +117,7 @@ class ImagePickerImpl: NSObject, ImagePickerApi {
PigeonError(
code: "UNSUPPORTED_PHPICKER",
message:
"PHPicker is only supported on macOS 13.0 or newer. Use \(supportsPHPicker) to check.",
"PHPicker is only supported on macOS 13.0 or newer. Use `supportsPHPicker()` to check.",
details: nil)))
return
}
Expand Down

0 comments on commit 277a923

Please sign in to comment.