Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import useOrganization from 'sentry/utils/useOrganization';
export function AskSeer<T>({state}: {state: ComboBoxState<T>}) {
const organization = useOrganization();
const hasAskSeerConsentFlowChanges = organization.features.includes(
'ask-seer-consent-flow-update'
'gen-ai-consent-flow-removal'
);
const {gaveSeerConsent, displayAskSeerFeedback} = useSearchQueryBuilder();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function AskSeerOption<T>({state}: {state: ComboBoxState<T>}) {

const organization = useOrganization();
const hasAskSeerConsentFlowChanges = organization.features.includes(
'ask-seer-consent-flow-update'
'gen-ai-consent-flow-removal'
);

const [optionDisableOverride, setOptionDisableOverride] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/searchQueryBuilder/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4861,7 +4861,7 @@ describe('SearchQueryBuilder', () => {
'gen-ai-features',
'gen-ai-explore-traces',
'gen-ai-explore-traces-consent-ui',
'ask-seer-consent-flow-update',
'gen-ai-consent-flow-removal',
],
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function useHiddenItems<T extends SelectOptionOrSectionWithKey<string>>({
}) {
const organization = useOrganization();
const hasAskSeerConsentFlowChanges = organization.features.includes(
'ask-seer-consent-flow-update'
'gen-ai-consent-flow-removal'
);
const {gaveSeerConsent} = useSearchQueryBuilder();
const hiddenOptions: Set<SelectKey> = useMemo(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export function useFilterKeyListBox({filterValue}: {filterValue: string}) {

const organization = useOrganization();
const hasAskSeerConsentFlowChanges = organization.features.includes(
'ask-seer-consent-flow-update'
'gen-ai-consent-flow-removal'
);

const filterKeyMenuItems = useMemo(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function useSortedFilterKeyItems({
'search-query-builder-wildcard-operators'
);
const hasAskSeerConsentFlowChanges = organization.features.includes(
'ask-seer-consent-flow-update'
'gen-ai-consent-flow-removal'
);

const flatKeys = useMemo(() => Object.values(filterKeys), [filterKeys]);
Expand Down
Loading