Skip to content

Commit c3bee62

Browse files
committed
Fix deprecated absolute fill usage
1 parent d41715f commit c3bee62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/components/TransactionItemRow/ReceiptPreview

src/components/TransactionItemRow/ReceiptPreview/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function ReceiptPreview({source, hovered, isEReceipt = false, transactionItem}:
119119
{shouldShowImage ? (
120120
<View style={[styles.w100]}>
121121
{isLoading && (
122-
<View style={[StyleSheet.absoluteFillObject, styles.justifyContentCenter, styles.alignItemsCenter]}>
122+
<View style={[StyleSheet.absoluteFill, styles.justifyContentCenter, styles.alignItemsCenter]}>
123123
<ActivityIndicator
124124
size={CONST.ACTIVITY_INDICATOR_SIZE.LARGE}
125125
reasonAttributes={reasonAttributes}

0 commit comments

Comments
 (0)