Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove date time format polyfil #51456

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion src/libs/IntlPolyfill/index.ios.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import polyfillDateTimeFormat from './polyfillDateTimeFormat';

Check failure on line 1 in src/libs/IntlPolyfill/index.ios.ts

View workflow job for this annotation

GitHub Actions / ESLint check

'polyfillDateTimeFormat' is defined but never used

Check failure on line 1 in src/libs/IntlPolyfill/index.ios.ts

View workflow job for this annotation

GitHub Actions / Changed files ESLint check

'polyfillDateTimeFormat' is defined but never used
import polyfillListFormat from './polyfillListFormat';
import polyfillNumberFormat from './polyfillNumberFormat';
import type IntlPolyfill from './types';
Expand All @@ -23,7 +23,9 @@

// Required to polyfill DateTimeFormat on iOS
// see: https://github.com/facebook/hermes/issues/1172#issuecomment-1776156538
polyfillDateTimeFormat();

// Removing polyfill for testing on ad-hoc build, it is the potential cause of the lag when opening the report
// polyfillDateTimeFormat();

polyfillListFormat();
};
Expand Down
Loading