From 48a37f4fdb2a7bcfba8079c8965f3646ebd4954a Mon Sep 17 00:00:00 2001 From: iamacook Date: Wed, 22 Nov 2023 23:55:33 +0100 Subject: [PATCH] fix: build --- src/components/dashboard/PendingTxs/PendingTxListItem.tsx | 2 +- src/components/tx-flow/common/OwnerList/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/dashboard/PendingTxs/PendingTxListItem.tsx b/src/components/dashboard/PendingTxs/PendingTxListItem.tsx index 8569974e76..4014e5d1af 100644 --- a/src/components/dashboard/PendingTxs/PendingTxListItem.tsx +++ b/src/components/dashboard/PendingTxs/PendingTxListItem.tsx @@ -42,7 +42,7 @@ const PendingTx = ({ transaction }: PendingTxType): ReactElement => { return ( - + {isMultisigExecutionInfo(transaction.executionInfo) && transaction.executionInfo.nonce} diff --git a/src/components/tx-flow/common/OwnerList/index.tsx b/src/components/tx-flow/common/OwnerList/index.tsx index a72c879713..21e249509d 100644 --- a/src/components/tx-flow/common/OwnerList/index.tsx +++ b/src/components/tx-flow/common/OwnerList/index.tsx @@ -1,5 +1,5 @@ import { Paper, Typography, SvgIcon } from '@mui/material' -import type { SxProps } from '@mui/material' +import type { PaperProps } from '@mui/material' import type { AddressEx } from '@safe-global/safe-gateway-typescript-sdk' import type { ReactElement } from 'react' @@ -15,7 +15,7 @@ export function OwnerList({ }: { owners: Array title?: string - sx?: SxProps + sx?: PaperProps['sx'] }): ReactElement { return (