Skip to content

Commit

Permalink
fix: adds back faqfilter
Browse files Browse the repository at this point in the history
  • Loading branch information
Pvcunha committed Feb 20, 2024
1 parent 237a0c4 commit 893b220
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,3 +586,65 @@ export const knownIssueSortBy = (intl: IntlShape) => {

return data
}

export const faqFilter = (intl: IntlShape) => {
const data = {
name: intl.formatMessage({ id: 'faq_filter.title' }),
options: [
{
id: 'Shopping',
name: 'Shopping',
},
{
id: 'Post-purchase',
name: 'Post-purchase',
},
{
id: 'Marketing & Merchandising',
name: 'Marketing & Merchandising',
},
{
id: 'Financial',
name: 'Financial',
},
{
id: 'Channels',
name: 'Channels',
},
{
id: 'VTEX IO',
name: 'VTEX IO',
},
{
id: 'Master Data',
name: 'Master Data',
},
{
id: 'Identity',
name: 'Identity',
},
{
id: 'Reliability',
name: 'Reliability',
},
{
id: 'Others',
name: 'Others',
},
{
id: 'Apps',
name: 'Apps',
},
{
id: 'Billing',
name: 'Billing',
},
{
id: 'Management',
name: 'Management',
},
],
}

return data
}

0 comments on commit 893b220

Please sign in to comment.