🐛 fix(subscribe): Extract Domain

This commit is contained in:
web@ppanel
2024-12-05 20:52:45 +07:00
parent a451f44c81
commit 40d61a9843
5 changed files with 17 additions and 18 deletions
+1 -4
View File
@@ -6,10 +6,7 @@ export default async function DashboardLayout({ children }: { children: React.Re
return (
<SidebarProvider className='container'>
<SidebarLeft className='sticky top-[84px] hidden w-52 border-r-0 bg-transparent lg:flex' />
<SidebarInset className='relative p-4'>
{/* <Header /> */}
{children}
</SidebarInset>
<SidebarInset className='relative p-4'>{children}</SidebarInset>
<SidebarRight className='sticky top-[84px] hidden w-52 border-r-0 bg-transparent 2xl:flex' />
</SidebarProvider>
);
+1
View File
@@ -64,6 +64,7 @@ export default async function RootLayout({ children }: { children: React.ReactNo
try {
config = await getGlobalConfig({ skipErrorHandler: true }).then((res) => res.data.data);
console.log(config);
} catch (error) {
/* empty */
}