File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -225,8 +225,7 @@ export function BuildDetailsMainContent(props: BuildDetailsMainContentProps) {
225225 appSizeData . treemap . category_breakdown &&
226226 Object . keys ( appSizeData . treemap . category_breakdown ) . length > 0 ;
227227
228- const missingDsymBinaries =
229- buildDetailsData ?. app_info ?. apple_app_info ?. missing_dsym_binaries ;
228+ const missingDsymBinaries = appSizeData . missing_dsym_binaries ;
230229
231230 const missingProguardMapping =
232231 buildDetailsData ?. app_info ?. android_app_info ?. has_proguard_mapping === false ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export interface BuildDetailsAppInfo {
2727}
2828
2929interface AppleAppInfo {
30- missing_dsym_binaries ?: string [ ] ;
30+ has_missing_dsym_binaries ?: boolean ;
3131}
3232
3333interface AndroidAppInfo {
You can’t perform that action at this time.
0 commit comments