remove frontend sv3 changes

This commit is contained in:
Maidul Islam
2023-11-27 18:32:05 -05:00
parent 6ccaa24e59
commit d76f556464

View File

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