@abihealth/goapp-react-native 1.36.0 → 1.36.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.36.1](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.36.0...goapp-react-native-v1.36.1) (2025-06-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update physician label retrieval in JoinVideoCallScreen for improved accuracy ([#216](https://github.com/abiglobalhealth/react-native-sdk/issues/216)) ([901213c](https://github.com/abiglobalhealth/react-native-sdk/commit/901213cfb7b2830daa3063da77d90729fe3b7aa6))
|
|
9
|
+
|
|
3
10
|
## [1.36.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.35.0...goapp-react-native-v1.36.0) (2025-06-27)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -46,7 +46,6 @@ var useCustomComponents_1 = require("../../common/hooks/useCustomComponents");
|
|
|
46
46
|
var useTheme_1 = require("../../common/hooks/useTheme");
|
|
47
47
|
var useTranslation_1 = require("../../common/hooks/useTranslation");
|
|
48
48
|
var CloseIcon_1 = require("../../common/icons/CloseIcon");
|
|
49
|
-
var professional_1 = require("../../common/utils/professional");
|
|
50
49
|
var animation_1 = require("../animations/CallingAnimation/animation");
|
|
51
50
|
var VideoConsultationIcon_1 = require("../icons/VideoConsultationIcon");
|
|
52
51
|
var react_1 = __importStar(require("react"));
|
|
@@ -68,8 +67,8 @@ var JoinVideoCallScreen = function (_a) {
|
|
|
68
67
|
return <VideoCallScreen_1.default onVideoCallLeft={onVideoCallLeft}/>;
|
|
69
68
|
return (<ScreenWrapper_1.ScreenWrapper header={<Header_1.Header title={t('general.consultation.videoConsultation.title')} leftIcon={<VideoConsultationIcon_1.VideoConsultationIcon />} rightIcon={<CloseIcon_1.CloseIcon />}/>} containerStyle={[styles.container, customComponents === null || customComponents === void 0 ? void 0 : customComponents.containerStyle]}>
|
|
70
69
|
<Text_1.Text variant="h2" center>
|
|
71
|
-
{t(
|
|
72
|
-
name:
|
|
70
|
+
{t("video.calling.physician_".concat(professional.gender), {
|
|
71
|
+
name: professional.firstName
|
|
73
72
|
})}
|
|
74
73
|
</Text_1.Text>
|
|
75
74
|
|