From 6e29558a4d677798c916a45e2577bd7627299b76 Mon Sep 17 00:00:00 2001 From: Abi Raja Date: Thu, 23 May 2024 17:40:29 -0400 Subject: [PATCH] disable feedback call note --- frontend/src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8db8f0a..8c5a150 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -105,7 +105,8 @@ function App({ navbarComponent }: Props) { selectedCodeGenerationModel !== CodeGenerationModel.GPT_4O_2024_05_13 && appState === AppState.INITIAL; - const showFeedbackCallNote = subscriberTier !== "free"; + // const showFeedbackCallNote = subscriberTier !== "free"; + const showFeedbackCallNote = false; // Indicate coding state using the browser tab's favicon and title useBrowserTabIndicator(appState === AppState.CODING);