Enable for TF

This commit is contained in:
Eric Bailey
2025-08-07 16:52:09 -05:00
parent 731ee24176
commit 7be75f6807
+2 -1
View File
@@ -28,6 +28,7 @@ import {useThrottledValue} from '#/components/hooks/useThrottledValue'
import {At_Stroke2_Corner0_Rounded as AtIcon} from '#/components/icons/At' import {At_Stroke2_Corner0_Rounded as AtIcon} from '#/components/icons/At'
import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check'
import {Text} from '#/components/Typography' import {Text} from '#/components/Typography'
import {IS_INTERNAL} from '#/env'
import {BackNextButtons} from '../BackNextButtons' import {BackNextButtons} from '../BackNextButtons'
import {HandleSuggestions} from './HandleSuggestions' import {HandleSuggestions} from './HandleSuggestions'
@@ -193,7 +194,7 @@ export function StepHandle() {
</Requirement> </Requirement>
{isHandleAvailable.suggestions && {isHandleAvailable.suggestions &&
isHandleAvailable.suggestions.length > 0 && isHandleAvailable.suggestions.length > 0 &&
(gate('handle_suggestions') || __DEV__) && ( (gate('handle_suggestions') || IS_INTERNAL) && (
<HandleSuggestions <HandleSuggestions
suggestions={isHandleAvailable.suggestions} suggestions={isHandleAvailable.suggestions}
onSelect={suggestion => { onSelect={suggestion => {