Remove team account related services and actions
Removed services and actions related to team account deletion as well as updated paths within other dependent files, better reflecting their new locations. Also, added a new service titled 'AccountBillingService' for handling billing-related operations and restructured the form layout and handled translation in 'team-account-danger-zone' component.
This commit is contained in:
@@ -23,13 +23,12 @@ export default async function RootLayout({
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
const i18n = await createI18nServerInstance();
|
||||
const lang = i18n.language;
|
||||
const { language } = await createI18nServerInstance();
|
||||
|
||||
return (
|
||||
<html lang={lang} className={getClassName()}>
|
||||
<html lang={language} className={getClassName()}>
|
||||
<body>
|
||||
<RootProviders lang={lang}>{children}</RootProviders>
|
||||
<RootProviders lang={language}>{children}</RootProviders>
|
||||
<Toaster richColors={false} />
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user