tagworks-sdk-v1-react 1.1.5 → 1.1.6
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/ios/TagWorksModule.swift +1 -1
- package/package.json +1 -1
package/ios/TagWorksModule.swift
CHANGED
|
@@ -163,7 +163,7 @@ class TagWorksModule: NSObject, RCTBridgeModule {
|
|
|
163
163
|
@objc func getCommonDimensionWithDouble(_ index: Int, callback: @escaping RCTResponseSenderBlock) {
|
|
164
164
|
let dimension = TagWorks.sharedInstance.getCommonDimension(WithType: Dimension.factType, index: index)
|
|
165
165
|
if let dimension {
|
|
166
|
-
callback([dimension.
|
|
166
|
+
callback([dimension.numValue])
|
|
167
167
|
} else {
|
|
168
168
|
callback([])
|
|
169
169
|
}
|