Skip to content

Commit ae0fc79

Browse files
committed
chore: cleanup
1 parent edcf001 commit ae0fc79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui-carto/ui/index.common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface MapPropertyOptions {
3737
}
3838

3939
function createGetter(key: string, options: MapPropertyOptions) {
40-
const nativeGetterName = ((global.isAndroid ? options.android : options.ios) || options).nativeGetterName || 'get' + key.charAt(0).toUpperCase() + key.slice(1);
40+
const nativeGetterName = ((__ANDROID__ ? options.android : options.ios) || options).nativeGetterName || 'get' + key.charAt(0).toUpperCase() + key.slice(1);
4141
const getConverter = options.getConverter;
4242
return function () {
4343
let result;

0 commit comments

Comments
 (0)