Skip to content

Commit

Permalink
docs(react-native): remove unused docs import (#1081)
Browse files Browse the repository at this point in the history
Think this is a leftover from the native permissions work? 

Used to be this - 

```
In this step, we create two functions called `androidProcessPermissions` and `iOSProcessPermissions`. These functions are responsible for informing the status of the permission grants to the SDK. 
```

but seems to be not needed anymore
  • Loading branch information
aharwood9 authored Sep 13, 2023
1 parent 2a3a3ab commit e9fc1d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ In this step, we create a function called `requestAndUpdatePermissions`. This fu
```ts title=src/utils/requestAndUpdatePermissions.ts
import { Platform } from 'react-native';
import { PERMISSIONS, requestMultiple } from 'react-native-permissions';
import { androidProcessPermissions, iosProcessPermissions } from 'src/utils/updatePermissions';


export const requestAndUpdatePermissions = async () => {
if (Platform.OS === 'ios') {
Expand Down

0 comments on commit e9fc1d3

Please sign in to comment.