From 47543e46f21903edb27e15dd1f8158d31cad5916 Mon Sep 17 00:00:00 2001 From: Akash K <57758277+amk-dev@users.noreply.github.com> Date: Thu, 6 Apr 2023 15:39:31 +0530 Subject: [PATCH] chore: disable export as secret gist in selfhosted (#68) --- packages/hoppscotch-selfhost-web/src/main.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/hoppscotch-selfhost-web/src/main.ts b/packages/hoppscotch-selfhost-web/src/main.ts index 64d5273d3..33faef2e3 100644 --- a/packages/hoppscotch-selfhost-web/src/main.ts +++ b/packages/hoppscotch-selfhost-web/src/main.ts @@ -15,4 +15,7 @@ createHoppApp("#app", { history: historyDef, tabState: tabStateDef, }, + platformFeatureFlags: { + exportAsGIST: false, + }, })