Update feature flags and resolve apos issues

This commit is contained in:
akhisud3195 2025-04-07 17:17:09 +05:30
parent e0e643f59d
commit 01e7962868
2 changed files with 2 additions and 3 deletions

View file

@ -4,8 +4,7 @@ export const USE_RAG_SCRAPING = process.env.USE_RAG_SCRAPING === 'true';
export const USE_CHAT_WIDGET = process.env.USE_CHAT_WIDGET === 'true'; export const USE_CHAT_WIDGET = process.env.USE_CHAT_WIDGET === 'true';
export const USE_AUTH = process.env.USE_AUTH === 'true'; export const USE_AUTH = process.env.USE_AUTH === 'true';
// export const USE_MULTIPLE_PROJECTS = true; // Hardcoded flags
export const USE_MULTIPLE_PROJECTS = false; export const USE_MULTIPLE_PROJECTS = false;
export const USE_TESTING_FEATURE = false; export const USE_TESTING_FEATURE = false;
export const USE_VOICE_FEATURE = false; export const USE_VOICE_FEATURE = false;

View file

@ -324,7 +324,7 @@ export default function App() {
)} )}
> >
<option value="custom">Tell us what you want to build</option> <option value="custom">Tell us what you want to build</option>
<option value="blank">I'll provide a description later</option> <option value="blank">I&apos;ll provide a description later</option>
<optgroup label="Customizable Examples"> <optgroup label="Customizable Examples">
{starting_copilot_prompts && {starting_copilot_prompts &&
Object.entries(starting_copilot_prompts) Object.entries(starting_copilot_prompts)