Unexpected Application Error! Minified React error #130;

Mansi Gusain 85 Reputation points
2024-08-29T06:39:35.18+00:00

Unexpected Application Error!

Minified React error #130; visit https://reactjs.org/docs/error-decoder.html?invariant=130&args[]=undefined&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings. I have tried setting this variable also - but nothing works. Please help.

SQL

WEBSITE_DYNAMIC_COMPRESSION_DISABLED= true

YAML

Error:
Azure Container Apps
Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
439 questions
{count} votes

1 answer

Sort by: Most helpful
  1. LeelaRajeshSayana-MSFT 15,811 Reputation points Microsoft Employee
    2024-08-29T17:19:52.9+00:00

    Hi @Mansi Gusain Greetings! Welcome to Microsoft Q&A forum. Thank you for posting this question here.

    The error is most likely caused by improper import / require statements in your files, as well as the export for the components you're importing/requiring.

    If you are using ES6 and you export your classes using default keyword, make sure your import statements are as follows

    While exporting

    export default class MyInput extends React.Component {
      ...
    }
    

    You need to then import the above component as follows import MyComponent from './my-component'

    If you export the class using named approach, i.e., without using the default keyword then, you would need to access it as follows

    While exporting

    export class MyInput extends React.Component {
      ...
    }
    

    While importing the above declaration, follow this import { MyComponent } from './my-component'

    Please look for all the references in your files and see if this resolves the issue. If you still face the same error after validation, kindly share your code snippets with us for further analysis.


    If the response helped, please do click Accept Answer and Yes for the answer provided. Doing so would help other community members with similar issue identify the solution. I highly appreciate your contribution to the community.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.