Skip to content

Commit d4e470f

Browse files
committed
#3887 fixed multi-line prettier error
1 parent b4aef2c commit d4e470f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementProductTable.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,9 @@ const ReimbursementProductTable: React.FC<ReimbursementProductTableProps> = ({
566566
>
567567
{hasWbsNum ? (
568568
<FormControl fullWidth margin="dense" variant="outlined" size="small">
569-
{watch(`reimbursementProducts.${product.index}.materialId`) || !watch(`reimbursementProducts.${product.index}.name`) || pendingMaterialIndices.has(product.index) ? (
569+
{watch(`reimbursementProducts.${product.index}.materialId`) ||
570+
!watch(`reimbursementProducts.${product.index}.name`) ||
571+
pendingMaterialIndices.has(product.index) ? (
570572
<Box sx={{ display: 'flex', gap: 1, alignItems: 'center' }}>
571573
<Box sx={{ flex: 1 }}>
572574
<MaterialAutocomplete

0 commit comments

Comments
 (0)