Compare commits

...

1 Commits

Author SHA1 Message Date
Maidul Islam a0dfa5eedf put svt v3 as feature flag
6 months ago

@ -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 />
</>
);

Loading…
Cancel
Save