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
Signed-off-by: Ellet <echo.ellet@gmail.com>
  • Loading branch information
EchoEllet committed Dec 13, 2024
1 parent 74a0344 commit 7736134
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 7736134

Please sign in to comment.