Skip to content
This repository was archived by the owner on Feb 8, 2025. It is now read-only.

fix(app): async iterator polyfill import path #285

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/util/patches/index.native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ global.process = require('process');
global.navigator.userAgent ??= 'React Native';

// Import corejs async iterator polyfill
import 'core-js/features/async-iterator'; // Required for neverthrow & viem
import 'core-js/features/symbol/async-iterator'; // Required for neverthrow & viem

export default {};
Loading