From bf39501ebb12c5727c310ec92af831fb29497f1e Mon Sep 17 00:00:00 2001 From: katspaugh Date: Thu, 27 May 2021 09:53:28 +0200 Subject: [PATCH] Fix typo (#2335) --- src/routes/safe/components/Transactions/TxList/QueueTxList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/safe/components/Transactions/TxList/QueueTxList.tsx b/src/routes/safe/components/Transactions/TxList/QueueTxList.tsx index 1ef22bf5..88acd9d0 100644 --- a/src/routes/safe/components/Transactions/TxList/QueueTxList.tsx +++ b/src/routes/safe/components/Transactions/TxList/QueueTxList.tsx @@ -86,7 +86,7 @@ export const QueueTxList = ({ transactions }: QueueTxListProps): ReactElement => const title = txLocation === 'queued.next' ? 'NEXT TRANSACTION' - : `QUEUE - Transaction with nonce ${nonce} needs to be executed fisrt` + : `QUEUE - Transaction with nonce ${nonce} needs to be executed first` const { lastItemId, setLastItemId } = useContext(TxsInfiniteScrollContext) if (transactions.length) {