iOS Connect IQ SDK - showConnectIQStoreForApp

Hi, I'm having an issue invoking showConnectIQStoreForApp on iOS. It used to work but now it redirects to Garmin Connect Mobile which redirects to apps.garmin.com/.../STORE_ID instead of apps.garmin.com/.../APP_ID. Should I just link to the app page myself? Here is the code I'm using:

NSUUID* appUuid = [[NSUUID alloc] initWithUUIDString: appId];
IQApp* app = [IQApp appWithUUID:appUuid storeUuid:_storeId device:_device];
dispatch_async(dispatch_get_main_queue(), ^{
[[ConnectIQ sharedInstance] showConnectIQStoreForApp:app];
});


Thanks!