diff --git a/modules/_node-scripts/bin.js b/modules/_node-scripts/bin.js index e62f78fe6633fb..5445a625087083 100755 --- a/modules/_node-scripts/bin.js +++ b/modules/_node-scripts/bin.js @@ -82,9 +82,12 @@ const COMMANDS = { If --check is passed no file is modified and the command just outputs what files need to be formatted. + If --emit-suppressed is passed, the list of errors that are suppressed will be logged as well. + See this help's introduction to find the meaning of --all, --current-branch, ... parameters. `, - parameters: '[--check] [{--all|--current-branch|--local-changes}]', + parameters: + '[--check] [--emit-suppressed] [{--all|--current-branch|--local-changes}]', script: './format/index.mjs', }, 'format:file': { diff --git a/modules/_node-scripts/format/format.mjs b/modules/_node-scripts/format/format.mjs index 3f86c58ef8710f..1623d325f58bf2 100644 --- a/modules/_node-scripts/format/format.mjs +++ b/modules/_node-scripts/format/format.mjs @@ -37,7 +37,16 @@ const FALLBACK_FILE_PATH = '__fallback__.js'; * A string with the result of the format operation (empty if nothing was formatted or had errors) * or undefined if no files were checked. */ -export default async function format(fix, filesToFormat = undefined) { +export default async function format( + fix, + filesToFormat = undefined, + {emitSuppressed} = {} +) { + const suppressedErrors = await fs.readFile( + path.join(import.meta.dirname, 'suppressed_errors.txt'), + 'utf-8' + ); + const rootDir = await getRootDir(); const filepaths = await getFilePaths(rootDir, filesToFormat); @@ -75,15 +84,25 @@ export default async function format(fix, filesToFormat = undefined) { } async function formatWithEslint(input, filepath) { + const relativePath = path.relative(rootDir, filepath); const [lintResult = {}] = await eslintCLI.lintText(input, { filePath: filepath, }); - const {messages, output} = lintResult; + const {messages = [], output} = lintResult; + + const filteredErrors = emitSuppressed + ? messages + : messages.filter( + (item) => + !suppressedErrors.includes( + `${relativePath}:${item.message}\n` + ) + ); - if (messages?.length) { + if (filteredErrors?.length) { errMessages[filepath] = errMessages[filepath] || []; - errMessages[filepath].push(...messages); + errMessages[filepath].push(...filteredErrors); } return output ?? input; diff --git a/modules/_node-scripts/format/index.mjs b/modules/_node-scripts/format/index.mjs index 7e1ea0b1c2129a..cfa1e732302345 100644 --- a/modules/_node-scripts/format/index.mjs +++ b/modules/_node-scripts/format/index.mjs @@ -12,12 +12,14 @@ import gitUtil from '../util/gitUtil.mjs'; import format from './format.mjs'; export default async function main() { - const {all, check, currentBranch, localChanges} = getNamedArguments({ - all: '--all', - check: '--check', - currentBranch: '--current-branch', - localChanges: '--local-changes', - }); + const {all, check, currentBranch, emitSuppressed, localChanges} = + getNamedArguments({ + all: '--all', + check: '--check', + currentBranch: '--current-branch', + emitSuppressed: '--emit-suppressed', + localChanges: '--local-changes', + }); const cwd = path.resolve('.'); const rootDir = await getRootDir(); @@ -64,7 +66,9 @@ export default async function main() { console.log('📝 Running format...\n'); - const formatOutput = await format(!check, files); + const formatOutput = await format(!check, files, { + emitSuppressed, + }); if (check && formatOutput) { console.error(formatOutput); diff --git a/modules/_node-scripts/format/suppressed_errors.txt b/modules/_node-scripts/format/suppressed_errors.txt new file mode 100644 index 00000000000000..82040a25fbb5a7 --- /dev/null +++ b/modules/_node-scripts/format/suppressed_errors.txt @@ -0,0 +1,436 @@ +// GENERATED FILE: DO NOT UPDATE THIS FILE MANUALLY + +apps/analytics/analytics-settings-web/src/main/resources/META-INF/resources/js/components/table/Table.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/analytics/analytics-settings-web/src/main/resources/META-INF/resources/js/pages/wizard/__tests__/AttributesStep.spec.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/analytics/analytics-settings-web/src/main/resources/META-INF/resources/js/pages/wizard/__tests__/WizardPage.spec.tsx:Unexpected reassignment of a variable which was defined outside of the component. Components and hooks should be pure and side-effect free, but variable reassignment is a form of side-effect. If this variable is used in rendering, use useState instead. (https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render) +apps/analytics/analytics-settings-web/src/main/resources/META-INF/resources/js/utils/useRequest.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/asset/asset-list-web/src/main/resources/META-INF/resources/js/components/VariationsNav/SortableListItem.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/asset/asset-taglib/src/main/resources/META-INF/resources/js/asset_categories_selector/AssetVocabularyCategoriesSelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/asset/asset-taglib/src/main/resources/META-INF/resources/js/asset_tags_selector/AssetTagsSelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/change-tracking/change-tracking-web/src/main/resources/META-INF/resources/publications/js/components/TimelineDropdownMenu.js:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +apps/change-tracking/change-tracking-web/src/main/resources/META-INF/resources/publications/js/views/ChangeTrackingChangeView.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/change-tracking/change-tracking-web/src/main/resources/META-INF/resources/publications/js/views/ChangeTrackingChangeView.js:This function accesses a ref value (the `current` property), which may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/client-extension/client-extension-web/src/main/resources/META-INF/resources/js/components/theme-css/FrontendTokenDefinitionFilePicker.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/account_selector/views/AccountCreationModal.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/add_to_cart/AddToCartButton.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionCheckbox.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionCheckboxMultiple.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionDate.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionNumeric.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionRadio.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionSelect.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/product_options/ProductOptionText.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/quantity_selector/InputQuantitySelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/src/main/resources/META-INF/resources/components/unit_of_measure_selector/UnitOfMeasureSelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-frontend-js/test/components/MiniCart/MiniCart.js:Unexpected reassignment of a variable which was defined outside of the component. Components and hooks should be pure and side-effect free, but variable reassignment is a form of side-effect. If this variable is used in rendering, use useState instead. (https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render) +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/info_box/DefaultView.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/info_box/modal/InfoBoxModalAddressInput.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/info_box/modal/InfoBoxModalPaymentMethodInput.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/info_box/modal/InfoBoxModalShippingMethodInput.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/info_box/OrderSummaryView.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/inline_editable_order_field/InlineEditableOrderField.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/multishipping/AddressSelector.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/multishipping/Multishipping.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/multishipping/OrderItemRow.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/OrderActions.js:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/status_label/StatusLabel.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-order-content-web/src/main/resources/META-INF/resources/js/StepTracker.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/commerce/commerce-pricing-web/src/main/resources/META-INF/resources/js/AddPriceEntryForm.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/content-dashboard/content-dashboard-web/src/main/resources/META-INF/resources/js/components/SidebarPanel.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/content-dashboard/content-dashboard-web/src/main/resources/META-INF/resources/js/components/TreeFilter/TreeFilter.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/content-dashboard/content-dashboard-web/src/main/resources/META-INF/resources/js/components/VocabulariesSelectionBox.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/components/AutoFocus.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/components/KeyboardDNDContext.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/components/PageRenderer/EditorVariant.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/components/PageRenderer/Page.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/components/ResizableColumn.es.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/core/hooks/useConfig.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/custom/form-report/components/card/CardList.js:Reassigning a variable after render has completed can cause inconsistent behavior on subsequent renders. Consider using state instead +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/custom/form/FormView.es.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/data-engine/data-engine-js-components-web/src/main/resources/META-INF/resources/js/custom/form/FormView.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/data-engine/data-engine-taglib/src/main/resources/META-INF/resources/js/components/field-sets/FieldSetModal.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/data-engine/data-engine-taglib/src/main/resources/META-INF/resources/js/components/rules/editor/Conditions.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/data-engine/data-engine-taglib/src/main/resources/META-INF/resources/js/components/rules/editor/Editor.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/data-engine/data-engine-taglib/src/main/resources/META-INF/resources/js/components/sidebar/MultiPanelSidebar.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/depot/depot-web/src/main/resources/META-INF/resources/js/LanguagesList.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/digital-signature/digital-signature-web/src/main/resources/META-INF/resources/js/components/document-previewer/DocumentPreviewer.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/digital-signature/digital-signature-web/src/main/resources/META-INF/resources/js/components/document-previewer/ImagePreviewer.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/digital-signature/digital-signature-web/src/main/resources/META-INF/resources/js/hooks/useResource.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/digital-signature/digital-signature-web/src/main/resources/META-INF/resources/js/pages/envelope/EnvelopeView.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/digital-signature/digital-signature-web/test/js/SearchContextProviderWrapper.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/document-library/document-library-preview-document/src/main/resources/META-INF/resources/preview/js/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/document-library/document-library-preview-image/src/main/resources/META-INF/resources/preview/js/index.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/document-library/document-library-video/src/main/resources/META-INF/resources/js/utils/hooks.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/document-library/document-library-web/src/main/resources/META-INF/resources/js/document_library/image-editor/EditImageWithImageEditor.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/Captcha/Captcha.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/ColorPicker/ColorPicker.es.js:Reassigning a variable after render has completed can cause inconsistent behavior on subsequent renders. Consider using state instead +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/DatePicker/DatePicker.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/DocumentLibrary/DocumentLibrary.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/Geolocation/useGeolocation.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/LocalizableRichText/LocalizableRichText.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/LocalizableText/LocalizableText.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/ObjectField/ObjectField.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/Options/DragPreview.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/RichText/RichText.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/SearchLocation/SearchLocation.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/SearchLocation/usePlaces.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/Select/MultipleSelect.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-field-type/src/main/resources/META-INF/resources/Select/Select.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/form-settings/FormSettingsApi.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/form-settings/FormSettingsModal.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/ManagementToolbar.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/NavigationBar.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/share-form/Email.es.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/components/share-form/Email.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/hooks/useAutoSave.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/dynamic-data-mapping/dynamic-data-mapping-form-web/src/main/resources/META-INF/resources/js/pages/FormBuilder.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/fragment/fragment-web/src/main/resources/META-INF/resources/js/fragment-editor/FragmentEditor.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/fragment/fragment-web/src/main/resources/META-INF/resources/js/fragment-editor/FragmentPreview.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/components/AddDataSourceFieldsModalContent.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/actions/Actions.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/actions/components/ActionForm.tsx:Hooks must be called at the top level in the body of a function component or custom hook, and may not be called within function expressions. See the Rules of Hooks (https://react.dev/warnings/invalid-hook-call-warning) +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/filters/components/selection_filter/source_type/ApiRestApplication.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/filters/components/selection_filter/source_type/ObjectPicklist.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/settings/Settings.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/visualization_modes/modes/Cards.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/visualization_modes/modes/List.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-admin-web/src/main/resources/META-INF/resources/js/data_set/visualization_modes/modes/Table.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-web/src/main/resources/META-INF/resources/FrontendDataSet.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-web/src/main/resources/META-INF/resources/management_bar/controls/BulkActions.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-data-set/frontend-data-set-web/src/main/resources/META-INF/resources/views/cards/Cards.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-data-set/frontend-data-set-web/src/main/resources/META-INF/resources/views/table/ClayTable.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-data-set/frontend-data-set-web/src/main/resources/META-INF/resources/views/table/dnd_table/Cell.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-editor/frontend-editor-ckeditor-web/src/main/resources/META-INF/resources/js/editor/BaseEditor.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-js/frontend-js-a11y-web/src/main/resources/META-INF/resources/components/ViolationPopover.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-js/frontend-js-a11y-web/src/main/resources/META-INF/resources/hooks/useIframeClient.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-js/frontend-js-components-web/src/main/resources/META-INF/resources/ClientExtension.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-js/frontend-js-react-web/src/main/resources/META-INF/resources/js/hooks/usePrevious.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-js/frontend-js-web/src/main/resources/META-INF/resources/liferay/modal/Modal.js:Hooks must be called at the top level in the body of a function component or custom hook, and may not be called within function expressions. See the Rules of Hooks (https://react.dev/warnings/invalid-hook-call-warning) +apps/frontend-taglib/frontend-taglib-clay/src/main/resources/META-INF/resources/management_toolbar/CreationMenu.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-taglib/frontend-taglib-clay/src/main/resources/META-INF/resources/management_toolbar/CreationMenu.js:This function accesses a ref value (the `current` property), which may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/frontend-taglib/frontend-taglib-clay/src/main/resources/META-INF/resources/management_toolbar/ResultsBar.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-taglib/frontend-taglib-clay/src/main/resources/META-INF/resources/management_toolbar/SelectionControls.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/frontend-taglib/frontend-taglib/src/main/resources/META-INF/resources/js/translation_manager/hooks/useRegistry.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/baseComponents/BaseAPISchemaFields.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/EditAPIApplication.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/EditAPIEndpoint.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/EditAPISchema.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/EditAPISchemaProperties.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/EditEndpointConfiguration.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/FDS/APIEndpointsTable.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/FDS/APISchemasTable.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/sidebar/Sidebar.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/headless/headless-builder/headless-builder-web/src/main/resources/META-INF/resources/js/components/sidebar/SidebarBody.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/item-selector/item-selector-taglib/src/main/resources/META-INF/resources/js/image_selector/ImageSelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/item-selector/item-selector-taglib/src/main/resources/META-INF/resources/js/image_selector/ImageSelectorImage.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/item-selector/item-selector-taglib/src/main/resources/META-INF/resources/js/repository_entry_browser/ItemSelectorRepositoryEntryBrowser.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/journal/journal-web/src/main/resources/META-INF/resources/js/translation_manager/TranslationFilter.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-admin-web/src/main/resources/META-INF/resources/js/miller_columns/MillerColumnsItem.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/CodeMirrorEditor.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/EditModeSelector.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/fragment_content/FragmentContent.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/keyboard_movement/KeyboardMovementManager.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/keyboard_movement/KeyboardMovementPreview.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/MasterLayout.js:This mutates a variable that React considers immutable +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/MultiSelectManager.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/NetworkStatusBar.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/ShortcutManager.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/Sidebar.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/topper/Topper.js:Mutating a value returned from a function whose return value should not be mutated +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/topper/TopperEmpty.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/components/undo/useUndo.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/ClipboardContext.tsx:This mutates a variable that React considers immutable +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/ControlsContext.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/EditableProcessorContext.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/GlobalContext.js:Mutating a value returned from 'useState()', which should not be mutated. Use the setter function to update instead +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/PortletContentContext.tsx:Mutating a value returned from 'useContext()', which should not be mutated +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/StoreContext.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/contexts/StoreContext.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/hooks/app_hooks/useLayoutKeyboardNavigation.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/app/utils/drag_and_drop/useDragAndDrop.js:Mutating a value returned from a function whose return value should not be mutated +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/common/components/ImageSelectorDescription.js:Mutating a value returned from 'useState()', which should not be mutated. Use the setter function to update instead +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/common/hooks/useSetRef.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/browser/components/page_structure/components/item_configuration_panels/FormInputGeneralPanel.js:Mutating a value returned from a function whose return value should not be mutated +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/browser/components/page_structure/components/StructureTreeContent.js:Hooks must be called at the top level in the body of a function component or custom hook, and may not be called within function expressions. See the Rules of Hooks (https://react.dev/warnings/invalid-hook-call-warning) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/browser/components/page_structure/components/StructureTreeNode.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/experience/components/ExperienceItem.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/experience/components/ExperienceSelector.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/experience/components/Popover.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/experience/utils.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/fragments_and_widgets/components/reorder_sets_modal/KeyboardDragAndDropContext.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/fragments_and_widgets/components/TabsPanel.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-content-page-editor-web/src/main/resources/META-INF/resources/page_editor/plugins/page_rules/components/RuleSelect.tsx:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/layout/layout-seo-web/src/main/resources/META-INF/resources/js/seo/display_page_templates/components/MappingPanel.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/layout/layout-taglib/src/main/resources/META-INF/resources/js/layout_classed_model_usages_view/ViewUsages.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/ContentContainer/Attachments.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/DefinitionOfTermsContainer/RelationshipSection.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/EditNotificationTemplate.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/SettingsContainer/PrimaryRecipients.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/SettingsContainer/SecondaryRecipients.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/notification/notification-web/src/main/resources/META-INF/resources/js/components/SettingsContainer/UserNotificationSettings.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-js-components-web/src/main/resources/META-INF/resources/components/CodeEditor/CodeMirrorEditor.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-js-components-web/src/main/resources/META-INF/resources/components/RichTextLocalized.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ListTypeDefinition/EditListTypeDefinition.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ListTypeDefinition/ListTypeEntriesModal.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModalAddFilter.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/Diagram/Diagram.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/EditObjectFolder.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/LeftSidebar/LeftSidebar.tsx:Calling setState from useMemo may trigger an infinite loop. (https://react.dev/reference/react/useState) +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/ObjectDefinitionNode/ObjectDefinitionNode.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/RightSidebar/RightSidebarObjectDefinitionDetails.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ModelBuilder/RightSidebar/RightSidebarObjectRelationshipDetails.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectAction/ObjectActionContainer.tsx:Only object properties can be deleted +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectAction/tabs/ActionBuilder.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectAction/tabs/ActionContainer/ActionContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectAction/tabs/ActionContainer/ThenContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectDetails/AccountRestrictionContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectDetails/EditObjectDetails.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectDetails/EntryDisplayContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectDetails/ScopeContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/EditObjectFieldContent.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/ModalAddObjectField.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/ObjectFieldFormBase.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/Tabs/Advanced/DefaultValueContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/Tabs/BasicInfo/AggregationFilterContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectField/Tabs/BasicInfo/SearchableContainer.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectRelationship/ObjectRelationshipFormBase.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectRelationship/SelectObjectDefinition.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectValidation/EditObjectValidation.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectValidation/UniqueCompositeKey.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectValidation/Validations.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ObjectView/ModalEditViewColumn/ModalEditViewColumn.tsx:Mutating a value returned from 'useState()', which should not be mutated. Use the setter function to update instead +apps/object/object-web/src/main/resources/META-INF/resources/js/components/StateManager/StateDefinition.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ViewObjectDefinitions/ModalBindToRootObjectDefinition.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ViewObjectDefinitions/ModalUnbindObjectDefinition.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/object/object-web/src/main/resources/META-INF/resources/js/components/ViewObjectDefinitions/ViewObjectDefinitions.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/portal-search/portal-search-admin-web/src/main/resources/META-INF/resources/js/execution_options/index.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-search/portal-search-web/src/main/resources/META-INF/resources/js/components/search_bar_configuration_suggestions/contributor_input_set_item/SiteActivities.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-search/portal-search-web/src/main/resources/META-INF/resources/js/components/SearchBar.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-search/portal-search-web/src/main/resources/META-INF/resources/js/components/SelectVocabularies.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-search/portal-search-web/src/main/resources/META-INF/resources/js/components/SelectVocabularies.js:This function accesses a ref value (the `current` property), which may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-search/portal-search-web/src/main/resources/META-INF/resources/js/hooks/useDebounceCallback.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/portal-workflow/portal-workflow-instance-tracker-web/src/main/resources/META-INF/resources/js/components/transitions/Edge.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/portal-workflow/portal-workflow-instance-tracker-web/src/main/resources/META-INF/resources/js/components/WorkflowInstanceTracker.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/product-navigation/product-navigation-control-menu-web/src/main/resources/META-INF/resources/js/useDragAndDrop.js:Mutating a value returned from a function whose return value should not be mutated +apps/product-navigation/product-navigation-product-menu-web/src/main/resources/META-INF/resources/js/useDebounceCallback.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/product-navigation/product-navigation-simulation-device/src/main/resources/META-INF/resources/js/components/Preview.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/product-navigation/product-navigation-simulation-device/src/main/resources/META-INF/resources/js/components/SizeSelector.tsx:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/questions/questions-web/src/main/resources/META-INF/resources/js/components/DefaultQuestionsEditor.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/questions/questions-web/src/main/resources/META-INF/resources/js/components/Highlight.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/questions/questions-web/src/main/resources/META-INF/resources/js/utils/utils.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/roles/roles-admin-web/src/main/resources/META-INF/resources/js/EditRolePermissionsNavigation.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/segments/segments-simulation-web/src/main/resources/META-INF/resources/js/components/PageContentSelectors.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/segments/segments-web/src/main/resources/META-INF/resources/js/components/keyboard_movement/KeyboardMovementPreview.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/common/components/activities-table-list/table-list-mobile/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/common/components/notification-sidebar/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/contents/InsuranceCard.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/contents/InsuranceProducts.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/ContactInfo/ContactInfoForm.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/Coverage/CoverageInfoForm.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/DriverInfo/DriverInfoForm.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/DriverInfo/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/VehicleInfo/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/forms/steps/VehicleInfo/VehicleInfoForm.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/pages/ApplicationDetails/components/quoted-summary/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/pages/ApplicationDetails/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/pages/Applications.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/applications/pages/ApplicationsTable/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/claims/pages/ClaimsDetails/claims-navigator-details/incident-details/googleMaps.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/claims/pages/ClaimsDetails/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/claims/pages/ClaimsTable/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/dashboard/pages/RecentApplications.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/dashboard/pages/SettingsModals/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/dashboard/pages/SettingsModals/ScheduleOptions.tsx:This mutates a variable that React considers immutable +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/dashboard/ProductPerformance/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/policies/pages/PoliciesTable/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/policies/pages/PolicyDetails/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/policies/pages/PolicyDetails/policy-activeclaims-details/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-ap/extra/remote-app/src/routes/policies/pages/PolicyDetails/policy-navigator-details/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/common/components/modal/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/common/hooks/useImperativeDisableScroll.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/common/hooks/usePrevious.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/BusinessInformation/Address.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/BusinessInformation/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/BusinessType/BusinessTypeRadioGroup.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/BusinessType/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/BusinessType/Search.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Basics/ProductQuote.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Business.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Employees.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Forms/Property.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/containers/Layout/FormBody.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/components/mobile/MobileContainer.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/context/WebContentProvider.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/hooks/useFormActionsDefault.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/hooks/useProductQuotes.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/hooks/useStepWizard.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/pages/GetAQuote.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/get-a-quote/Providers.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/quote-comparison/components/Carousel/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/selected-quote/components/DropArea/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/selected-quote/components/Steps/PaymentMethod/index.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-initializer/site-initializer-raylife-d2c/extra/remote-app/src/routes/selected-quote/pages/SelectedQuote.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +apps/site-navigation/site-navigation-admin-web/src/main/resources/META-INF/resources/js/site_navigation_menu_editor/components/SidebarPanelContent.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +apps/style-book/style-book-web/test/style-book-editor/Toolbar.test.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +apps/template/template-web/src/main/resources/META-INF/resources/js/ddm_template_editor/components/Editor.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/analytics/analytics-reports-js-components-web/src/main/resources/META-INF/resources/js/components/metrics/MetricsChart.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/analytics/analytics-reports-js-components-web/src/main/resources/META-INF/resources/js/hooks/useFetch.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/analytics/analytics-reports-web/src/main/resources/META-INF/resources/js/components/AnalyticsReports.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/analytics/analytics-reports-web/src/main/resources/META-INF/resources/js/components/Chart.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/analytics/analytics-reports-web/src/main/resources/META-INF/resources/js/components/Navigation.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-dashboard-web/src/main/resources/META-INF/resources/js/ForecastChart.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/ManagementBar/ManagementBar.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/ManagementBar/RootOrganizationFilter.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/fields/BooleanField.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/fields/DateField.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/fields/InputField.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/fields/MultiselectPicklist.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/fields/Picklist.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/objects/FieldsWrapper.tsx:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/panels/EditAccountInfoPanel.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/panels/EditOrganizationInfoPanel.js:Mutating a value returned from 'useState()', which should not be mutated. Use the setter function to update instead +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/panels/EditUserInfoPanel.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/panels/ViewAccountInfoPanel.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/panels/ViewUserInfoPanel.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-organization-web/src/main/resources/META-INF/resources/js/utils/LogoSelector.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/commerce/commerce-shop-by-diagram-web/src/main/resources/META-INF/resources/js/components/TooltipProvider.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/portal-search-tuning/portal-search-tuning-rankings-web/src/main/resources/META-INF/resources/js/components/ResultRankingsAdd.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/portal-search-tuning/portal-search-tuning-rankings-web/src/main/resources/META-INF/resources/js/components/scope/ScopeSelect.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/actions/Actions.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/assignments/Assignments.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/assignments/select-assignment/ResourceActions.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/notifications/Notifications.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/notifications/NotificationsInfo.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/shared-components/BaseActionsInfo.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/shared-components/BaseNotificationsInfo.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/shared-components/BaseRole.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/shared-components/BaseRoleType.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/shared-components/BaseUser.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/CurrentTimers.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-action/ActionTypeNotification.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-action/ActionTypeReassignment.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-action/SelectActionType.js:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-reassignment/AssetCreator.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-reassignment/ResourceActions.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-reassignment/Role.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-reassignment/RoleType.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/select-reassignment/SelectReassignment.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/Timer.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/TimerFields.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/TimerInfo.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/sections/timers/Timers.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/Sidebar.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/SidebarBody.js:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/components/sidebar/SidebarHeader.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/diagram-builder/DiagramBuilder.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/shared/components/toolbar/UpperToolbar.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-kaleo-designer-web/src/main/resources/META-INF/resources/designer/js/definition-builder/source-builder/SourceBuilder.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/filter/hooks/useTimeRangeFetch.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/filter/ProcessStepFilter.es.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/filter/ProcessVersionFilter.es.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/filter/TimeRangeFilter.es.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/filter/VelocityUnitFilter.es.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/InstanceListPageBody.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/InstanceListPageHeader.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/InstanceListPageTable.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/instance-details/InstanceDetailsModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/instance-details/InstanceDetailsModalBody.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/bulk/BulkReassignModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/bulk/select-assignees-step/SelectAssigneesStep.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/bulk/select-assignees-step/SelectAssigneesStepHeader.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/bulk/select-assignees-step/SelectAssigneesStepTable.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/single/SingleReassignModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/reassign/single/SingleReassignModalTable.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/shared/select-tasks-step/SelectTasksStep.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/shared/select-tasks-step/SelectTasksStepHeader.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/transition/bulk/BulkTransitionModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/transition/bulk/select-transition-step/SelectTransitionStep.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/transition/bulk/select-transition-step/SelectTransitionStepBody.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/transition/bulk/select-transition-step/SelectTransitionStepCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/transition/single/SingleTransitionModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/update-due-date/BulkUpdateDueDateModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/update-due-date/SingleUpdateDueDateModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/update-due-date/UpdateDueDateStep.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/instance-list-page/modal/update-due-date/UpdateDueDateStep.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/performance-by-assignee-page/PerformanceByAssigneePage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/performance-by-step-page/PerformanceByStepPage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-list-page/ProcessListPage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/completion-velocity/CompletionVelocityCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/performance-by-assignee-card/PerformanceByAssigneeCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/performance-by-step-card/PerformanceByStepCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/process-items/ProcessItemsCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/ProcessMetricsContainer.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/SLAInfo.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/workload-by-assignee-card/WorkloadByAssigneeCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/process-metrics/workload-by-step-card/WorkloadByStepCard.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/settings/indexes-page/hooks/useReindexActions.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/settings/indexes-page/IndexesPage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/form-page/hooks/useSLAFormState.es.js:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/form-page/sections/TimeFrameSection.es.js:Mutating a value returned from 'useContext()', which should not be mutated +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/form-page/SLAFormPageBody.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/form-page/SLAFormPageProvider.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/list-page/BlockedSLAInfo.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/sla/list-page/SLAListPage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/components/workload-by-assignee-page/WorkloadByAssigneePage.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/hooks/useDebounceCallback.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/autocomplete/Autocomplete.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/autocomplete/AutocompleteMultiSelect.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/filter/Filter.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/filter/FilterItem.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/filter/hooks/useFilterFetch.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/filter/hooks/useFilterState.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/filter/hooks/useFilterStatic.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/header/HeaderTitle.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/pagination-bar/PaginationBar.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/portal/Portal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/components/results-bar/ResultsBar.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/hooks/useFilter.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/hooks/usePageTitle.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/src/main/resources/META-INF/resources/js/shared/hooks/useProcessTitle.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/test/components/instance-list-page/modal/transition/bulk/BulkTransitionModal.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/portal-workflow/portal-workflow-metrics-web/test/mock/MockRouter.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/search-experiences/search-experiences-web/src/main/resources/META-INF/resources/sxp_blueprint_admin/js/hooks/useDebounceCallback.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/search-experiences/search-experiences-web/src/main/resources/META-INF/resources/sxp_blueprint_admin/js/shared/CodeMirrorEditor.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/search-experiences/search-experiences-web/src/main/resources/META-INF/resources/sxp_blueprint_admin/js/shared/EditTitleModal.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +dxp/apps/segments/segments-experiment-web/src/main/resources/META-INF/resources/js/components/ClickGoalPicker/ClickGoalPicker.es.js:Mutating a value returned from a function whose return value should not be mutated +dxp/apps/segments/segments-experiment-web/src/main/resources/META-INF/resources/js/components/ClickGoalPicker/ClickGoalPicker.es.js:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +dxp/apps/segments/segments-experiment-web/src/main/resources/META-INF/resources/js/util/hooks.es.js:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-customer-workspace/client-extensions/liferay-customer-custom-element/src/common/hooks/useIntersectionObserver.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-customer-workspace/client-extensions/liferay-customer-custom-element/src/routes/attachment-uploader/AttachmentUploader.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-customer-workspace/client-extensions/liferay-customer-custom-element/src/routes/customer-portal/containers/ActivationKeysTable/hooks/usePagination.js:Calling setState from useMemo may trigger an infinite loop. (https://react.dev/reference/react/useState) +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/components/FileList/ImageFileItem.tsx:Mutating component props or hook arguments is not allowed. Consider using a local variable instead +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/hooks/useGetAddresses.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/AdministratorDashboard/pages/Metrics/OrdersTab/index.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/AdministratorDashboard/pages/Trial/TrialTable/index.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/CustomerDashboard/pages/Apps/App/CloudProvisioning/hooks/useProvisioningActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/PublisherDashboard/pages/Apps/AppCreationFlow/ProvideAppBuildPage/ProvideAppBuildPage.tsx:Updating a value used previously in JSX is not allowed. Consider moving the mutation before the JSX +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/PublisherDashboard/pages/Apps/AppCreationFlow/ReviewAndSubmitAppPage/ReviewAndSubmitAppPage.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-marketplace-workspace/client-extensions/liferay-marketplace-custom-element/src/pages/PublisherDashboard/pages/Apps/AppCreationFlow/StorefrontPage/CustomizeAppStorefrontPage.tsx:Mutating a value returned from a function whose return value should not be mutated +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/common/hooks/useCompanyOptions.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/dashboard/MDFRequestChart/index.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFClaimForm/components/MDFClaimPage/components/ActivityClaimPanel/components/DigitalMarketingPopFields/DigitalMarketingPopFields.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFRequestForm/steps/Activities/Activities.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFRequestForm/steps/Activities/components/Form/components/DigitalMarketingFields/DigitalMarketingFields.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFRequestForm/steps/Activities/components/Form/components/LeadListSection/LeadListSection.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFRequestForm/steps/Activities/components/Form/Form.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-partner-workspace/client-extensions/liferay-partner-custom-element/src/routes/MDFRequestForm/steps/Goals/Goals.tsx:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/components/Sidebar/SidebarFooter.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/hooks/useFetch.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/hooks/usePrevious.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/CompareRuns/Components.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/CompareRuns/index.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/CompareRuns/Teams.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Cases/useCaseActions.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Requirements/useRequirementActions.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/Builds/Inner/CaseResult/useCaseResultActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/Builds/Templates/useBuildTemplateActions.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/Builds/useBuildActions.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/Builds/useBuildTestActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/Builds/useSuitesCasesHandler.ts:React Compiler has skipped optimizing this component because one or more React ESLint rules were disabled. React Compiler only works when your components follow all the rules of React, disabling them may result in unexpected or incorrect behavior +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Routines/useRoutineActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/Suites/useSuiteActions.ts:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Project/useProjectActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Testflow/Subtask/SubtaskCaseResults.tsx:Unexpected reassignment of a variable which was defined outside of the component. Components and hooks should be pure and side-effect free, but variable reassignment is a form of side-effect. If this variable is used in rendering, use useState instead. (https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Testflow/Subtask/useSubtasksActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-testray-workspace/client-extensions/liferay-testray-custom-element/src/pages/Testflow/useTestflowActions.tsx:Ref values (the `current` property) may not be accessed during render. (https://react.dev/reference/react/useRef) +../workspaces/liferay-ticket-workspace/client-extensions/liferay-ticket-custom-element/src/hooks/useHash.tsx:Writing to a variable defined outside a component or hook is not allowed. Consider using an effect diff --git a/modules/_node-scripts/package.json b/modules/_node-scripts/package.json index 7eb4a08810c031..a7ca3b8236f908 100644 --- a/modules/_node-scripts/package.json +++ b/modules/_node-scripts/package.json @@ -4,7 +4,7 @@ "node-scripts": "./bin.js" }, "com.liferay": { - "sha256": "3fdd536be54300b27cbf07a7f66baf0384eefceb372b8e9682d089012946c31e" + "sha256": "09e8d335e46c52961c36274429ab2fe099ba8c5d6118a04de60cc7c85bc05bd6" }, "dependencies": { "@babel/preset-env": "7.24.7",