disable feature flags that were enabled by mistake

This commit is contained in:
Dan Wilson 2023-08-04 12:40:44 +01:00
parent 7504ea95c1
commit a60365823c

View File

@ -1,8 +1,8 @@
// temp file to hide open source pipelines and secrets - can be extended if needs be
const featureFlags = {
OPEN_SOURCE_PIPELINES: true,
OPEN_SOURCE_SECRETS: true
OPEN_SOURCE_PIPELINES: false,
OPEN_SOURCE_SECRETS: false
}
export const useFeatureFlag = (): Record<keyof typeof featureFlags, boolean> => featureFlags