mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-11 19:12:06 -05:00
removed unused layout file
This commit is contained in:
-19
@@ -1,19 +0,0 @@
|
||||
import type { ReactNode } from "react";
|
||||
import { getTranslate } from "@/lingodotdev/server";
|
||||
import { AnalysisPageLayout } from "@/modules/ee/analysis/components/analysis-page-layout";
|
||||
|
||||
const DashboardDetailLayout = async (props: {
|
||||
children: ReactNode;
|
||||
params: Promise<{ environmentId: string }>;
|
||||
}) => {
|
||||
const { environmentId } = await props.params;
|
||||
const t = await getTranslate();
|
||||
|
||||
return (
|
||||
<AnalysisPageLayout pageTitle={t("common.analysis")} environmentId={environmentId}>
|
||||
{props.children}
|
||||
</AnalysisPageLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default DashboardDetailLayout;
|
||||
Reference in New Issue
Block a user