Skip to content

Commit

Permalink
refactor: fix typos (#7618)
Browse files Browse the repository at this point in the history
* fix typo
* second typo
* style(lint): `yarn lint:ios:fix`

---------

Co-authored-by: Mike Hardy <github@mikehardy.net>
  • Loading branch information
paulb777 and mikehardy authored Feb 14, 2024
1 parent dce60cf commit 2ff569d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ To run end-to-end tests for `iOS`, please run:
- `yarn tests:emulator:start` - runs Firestore emulator for Firestore tests.
- `yarn tests:ios:test` - runs tests using Detox library. Tests for each package can be found in the `e2e` directory (i.e. `[PACKAGE]/e2e/*.e2e.js`)

See it's local testing guide [here](https://github.com/invertase/react-native-firebase/blob/main/tests/README.md) to get started
See its local testing guide [here](https://github.com/invertase/react-native-firebase/blob/main/tests/README.md) to get started
with `e2e` testing this project.

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,8 @@ - (void)application:(UIApplication *)application
for (id appId in [FIRApp allApps]) {
FIRApp *app = [[FIRApp allApps] objectForKey:appId];
if ([[FIRAuth authWithApp:app] canHandleNotification:userInfo]) {
DLog(
@"didReceiveRemoteNotification Firebase Auth handeled the notification with instance: %@",
app.name);
DLog(@"didReceiveRemoteNotification Firebase Auth handled the notification with instance: %@",
app.name);
completionHandler(UIBackgroundFetchResultNoData);
return;
}
Expand Down

0 comments on commit 2ff569d

Please sign in to comment.