Org Navigation(mobile)
While defining react naigation route config, if any of the route contains route param then all the child routes should pass the param while navigating to the route. Consider the following example
![Screenshot 2022-11-28 at 2 25 10 AM](https://user-images.githubusercontent.com/30002668/204160460-c72a89b2-40b7-468f-90d4-d13b2afb648e.png)
The stack screen will be defined like this
![Screenshot 2022-11-28 at 2 25 42 AM](https://user-images.githubusercontent.com/30002668/204160487-c28d4468-6aa7-4427-a491-e9faf0cfc723.png)
Now whenever you need to navigate to Dashboard, you will have to pass the orgName
prop like this navgation.navigate('MainStack.OrgStack.OrgNameStack', {screen: 'Dashboard', params: {orgName: 'asd'}})