Refine localhost is opening a white screen only.
I have no clue at what step of anything i was doing this happened, but it happened and now i can't figure out why it happened. Please help 

yarn install command.getState is being called, but it's not defined or not a function.getState function or the context in which it's being used in a Refine application. getState is being called in your code. It might be that getState is not defined in the scope where it's being used.getState is a method of an object, make sure that the object is defined and correctly initialized before getState is called.getState is an asynchronous function, ensure that it's being properly awaited or that its promise is being handled.KBarContext from the @refinedev/kbar package. This context provides several values, including query, getState, subscribe, and options. getState function is typically used to retrieve the current state of the context. In this case, it seems to be used as part of a collector function, which might be used to collect or transform the state in some way.query: This could be a function or value used to query or filter the state in some way.getState: This is a function used to retrieve the current state of the context.subscribe: This could be a function used to subscribe to changes in the state.options: This could be an object containing various options or settings.@refinedev/kbar package is used to integrate the kbar (https://kbar.vercel.app/) command palette into a Refine application, as mentioned in the Refine documentation (https://refine.dev/docs/packages/command-palette/). The command palette allows users to quickly navigate the application using keyboard shortcuts.getState is not a function, it could be that the KBarContext is not correctly initialized, or that the @refinedev/kbar package is not correctly installed or imported. You might want to check that you're using the latest version of the package, and that it's correctly set up in your application.tsconfig.build.json file in the specified directory. This file is usually used to specify the root files and the compiler options required to compile a TypeScript project.tsconfig.build.json file in the refine-antd package.extends line in the tsconfig.json file that was trying to extend tsconfig.build.json, as they didn't have a tsconfig.build.json file to extend.isStack) that doesn't exist on a certain type (AreaConfig). isStack with stack in your code. AreaConfig type and its properties.create action is not defined for the companies resource in your Refine application.<Refine /> component in your application's root file. Each resource is associated with a set of actions, such as list, create, edit, show, and delete.useGo hook, as described in the Refine documentation (https://refine.dev/docs/routing/hooks/use-go), is used to navigate between these actions. When you call go({ to: { resource: 'companies', action: 'create' } }), it tries to navigate to the create action of the companies resource.create action is not defined for the companies resource, you'll see the error message you're encountering. To fix this, you need to ensure that the create action is defined for the companies resource in your <Refine /> component.<Refine /> component:CreateCompany would be a React component that implements the create action for the companies resource. You need to replace CreateCompany with the actual component you're using for this action.create action for the companies resource and you're still seeing the error, there might be an issue with how you're using the useGo hook or with your application's routing configuration. In that case, you might want to check the Refine documentation (https://refine.dev/docs) or the Refine Github repository (https://github.com/refinedev/refine) for more information.UpcomingEvents.js or DealsDashboard.js, or it could be part of a larger component like Dashboard.js. The exact location and name of the file will depend on how your application is structured.DASHBOARD_TOTAL_COUNTS_QUERY, is typically retrieved from an API or a database. To change this data, you would need to modify the source of the data itself or the query that's used to fetch it.DASHBOARD_TOTAL_COUNTS_QUERY is likely coming from an API endpoint or a database. You'll need to identify this source in order to make changes to the data.DASHBOARD_TOTAL_COUNTS_QUERY, you can update this query directly. For example, you might want to change the fields that are selected, add a filter, or modify the sorting order.DASHBOARD_TOTAL_COUNTS_QUERY or the structure of your application, so I can't provide more specific advice.useGetIdentity to retrieve the identity of the current user.WHERE clause to your SQL query, adding a filter to your API endpoint, or using a similar technique.

getStategetStategetStategetStategetStategetStategetStategetStategetStategetStategetStateKBarContextKBarContext@refinedev/kbar@refinedev/kbar@refinedev/kbarcollectortsconfig.build.jsontsconfig.build.jsontsconfig.build.jsontsconfig.build.jsonrefine-antdextendsisStackisStackAreaConfigAreaConfigstackgo({ to: { resource: 'companies', action: 'create' } })CreateCompanyCreateCompanyUpcomingEvents.jsDealsDashboard.jsDashboard.jsDASHBOARD_TOTAL_COUNTS_QUERYDASHBOARD_TOTAL_COUNTS_QUERYDASHBOARD_TOTAL_COUNTS_QUERYDASHBOARD_TOTAL_COUNTS_QUERY<Refine
routerProvider={Router}
resources={[
{
name: "companies",
list: ListCompanies,
create: CreateCompany, // Ensure this is defined
edit: EditCompany,
show: ShowCompany,
// Other actions...
},
// Other resources...
]}
>
{/* Your app's components */}
</Refine>import { useGetIdentity } from "@refinedev/core";
export const DashboardPage: React.FC = () => {
const { data, isLoading } = useGetIdentity<{
address: string;
balance: string;
}>();
// ...
};