refine project my layout folder in components seems not be connected whatever changes i make are not
i swizzled in layoutsversion2 into my refine project but when i make changes into the sider, title files my changes are not reflected in the website
title files are not reflecting on your website. Here are a few things you can check:swizzleswizzleswizzleswizzleswizzleswizzlesidersrc/components/layoutnpm run refine swizzle@refinedev/mui@refinedev/mantineimport { Refine } from "@refinedev/core";
import { ThemedLayoutV2 } from "components/themedLayout";
import { ThemedHeaderV2 } from "components/themedLayout/header";
import { ThemedSiderV2 } from "components/themedLayout/sider";
import { ThemedTitleV2 } from "components/themedLayout/title";
const App = () => {
return (
<Refine
/* ... */
>
<ThemedLayoutV2 Header={ThemedHeaderV2} Sider={ThemedSiderV2} Title={ThemedTitleV2}>
/* ... */
</ThemedLayoutV2>
</Refine>
);
};