Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook committed Nov 22, 2023
1 parent be53934 commit 48a37f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/dashboard/PendingTxs/PendingTxListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const PendingTx = ({ transaction }: PendingTxType): ReactElement => {
return (
<NextLink href={url} passHref>
<Box className={css.container}>
<Box gridAra="nonce">
<Box gridArea="nonce">
{isMultisigExecutionInfo(transaction.executionInfo) && transaction.executionInfo.nonce}
</Box>

Expand Down
4 changes: 2 additions & 2 deletions src/components/tx-flow/common/OwnerList/index.tsx
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -15,7 +15,7 @@ export function OwnerList({
}: {
owners: Array<AddressEx>
title?: string
sx?: SxProps
sx?: PaperProps['sx']
}): ReactElement {
return (
<Paper className={css.container} sx={sx}>
Expand Down

0 comments on commit 48a37f4

Please sign in to comment.