diff --git a/components/dashboard/src/contexts/FeatureFlagContext.tsx b/components/dashboard/src/contexts/FeatureFlagContext.tsx index a4feeae0c78626..a63a2dc32211d9 100644 --- a/components/dashboard/src/contexts/FeatureFlagContext.tsx +++ b/components/dashboard/src/contexts/FeatureFlagContext.tsx @@ -42,7 +42,7 @@ const FeatureFlagContextProvider: React.FC = ({ children }) => { const [showUsageView, setShowUsageView] = useState(false); const [isUsageBasedBillingEnabled, setIsUsageBasedBillingEnabled] = useState(false); const [showUseLastSuccessfulPrebuild, setShowUseLastSuccessfulPrebuild] = useState(false); - const [usePublicApiTeamsService, setUsePublicApiTeamsService] = useState(false); + const [usePublicApiTeamsService, setUsePublicApiTeamsService] = useState(true); const [usePublicApiProjectsService, setUsePublicApiProjectsService] = useState(false); const [enablePersonalAccessTokens, setPersonalAccessTokensEnabled] = useState(false); const [usePublicApiWorkspacesService, setUsePublicApiWorkspacesService] = useState(false); @@ -54,7 +54,7 @@ const FeatureFlagContextProvider: React.FC = ({ children }) => { usage_view: { defaultValue: false, setter: setShowUsageView }, isUsageBasedBillingEnabled: { defaultValue: false, setter: setIsUsageBasedBillingEnabled }, showUseLastSuccessfulPrebuild: { defaultValue: false, setter: setShowUseLastSuccessfulPrebuild }, - publicApiExperimentalTeamsService: { defaultValue: false, setter: setUsePublicApiTeamsService }, + publicApiExperimentalTeamsService: { defaultValue: true, setter: setUsePublicApiTeamsService }, publicApiExperimentalProjectsService: { defaultValue: false, setter: setUsePublicApiProjectsService }, personalAccessTokensEnabled: { defaultValue: false, setter: setPersonalAccessTokensEnabled }, publicApiExperimentalWorkspaceService: {