Compare commits

...

2 Commits

Author SHA1 Message Date
Ubbe
e57438eac1 Merge branch 'dev' into fix/launch-darkly-card 2025-12-18 17:59:49 +01:00
Lluis Agusti
1f326af67c fix(chat): chat flag should be disabled 2025-12-18 17:54:55 +01:00

View File

@@ -48,7 +48,7 @@ const mockFlags = {
[Flag.AGENT_FAVORITING]: false,
[Flag.MARKETPLACE_SEARCH_TERMS]: DEFAULT_SEARCH_TERMS,
[Flag.ENABLE_PLATFORM_PAYMENT]: false,
[Flag.CHAT]: true,
[Flag.CHAT]: false,
};
export function useGetFlag<T extends Flag>(flag: T): FlagValues[T] | null {