diff --git a/packages/checkout/widgets-lib/src/widgets/bridge/views/ClaimWithdrawal.tsx b/packages/checkout/widgets-lib/src/widgets/bridge/views/ClaimWithdrawal.tsx index 2b2001b768..5eae24d792 100644 --- a/packages/checkout/widgets-lib/src/widgets/bridge/views/ClaimWithdrawal.tsx +++ b/packages/checkout/widgets-lib/src/widgets/bridge/views/ClaimWithdrawal.tsx @@ -67,7 +67,7 @@ export function ClaimWithdrawal({ transaction }: ClaimWithdrawalProps) { useEffect(() => { const getWithdrawalTxn = async () => { if (!tokenBridge || !transaction || transaction.details.current_status?.index === undefined) return; - // get withdrawal transaction from the token bridge by receipient address and index + // get withdrawal transaction from the token bridge by recipient address and index setLoading(true); try { const flowRateWithdrawTxnResponse = await tokenBridge?.getFlowRateWithdrawTx({ diff --git a/packages/internal/metrics/src/utils/errorBoundary.test.ts b/packages/internal/metrics/src/utils/errorBoundary.test.ts index b1000d45f5..0f16b65b22 100644 --- a/packages/internal/metrics/src/utils/errorBoundary.test.ts +++ b/packages/internal/metrics/src/utils/errorBoundary.test.ts @@ -20,7 +20,7 @@ describe('errorBoundary', () => { }; expect(errorBoundary(testFn)).not.toThrowError(); }); - it('should not throw an error for an async funtion that errors', () => { + it('should not throw an error for an async function that errors', () => { const testFn = async () => { throw new Error('test'); }; diff --git a/packages/orderbook/src/test/fulfill.demo.ts b/packages/orderbook/src/test/fulfill.demo.ts index e89e47dbdd..011bb14c48 100644 --- a/packages/orderbook/src/test/fulfill.demo.ts +++ b/packages/orderbook/src/test/fulfill.demo.ts @@ -31,7 +31,7 @@ async function deployAndMintNftContract(wallet: Wallet, provider: JsonRpcProvide /* Script: - The new visibile features of the order book since the last demo are: + The new visible features of the order book since the last demo are: - Interactions exposed through the SDK (plus docs) - Orders expire - Orders can be listed and paged