put svt v3 as feature flag

This commit is contained in:
Maidul Islam
2023-11-14 15:25:17 -05:00
parent 1fea2f1121
commit a0dfa5eedf

View File

@@ -1,10 +1,10 @@
import { ServiceTokenSection } from "../ServiceTokenSection";
// import { ServiceTokenV3Section } from "../ServiceTokenV3Section";
import { ServiceTokenV3Section } from "../ServiceTokenV3Section";
export const ProjectServiceTokensTab = () => {
return (
<>
{/* <ServiceTokenV3Section /> */}
{process.env.NEXT_PUBLIC_AGENT_FEATURE_FLAG === "true" ? <ServiceTokenV3Section /> : null}
<ServiceTokenSection />
</>
);