Skip to content

Commit

Permalink
feat: make dunning visible in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
keellyp committed Oct 24, 2024
1 parent 70e095e commit da7a6f4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/layouts/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { Button, Typography, VerticalMenu } from '~/components/designSystem'
import {
AUTHENTICATION_ROUTE,
CREATE_TAX_ROUTE,
DUNNINGS_SETTINGS_ROUTE,
EMAILS_SETTINGS_ROUTE,
HOME_ROUTE,
INTEGRATIONS_ROUTE,
Expand Down Expand Up @@ -101,13 +102,12 @@ const Settings = () => {
match: [TAXES_SETTINGS_ROUTE],
hidden: !hasPermissions(['organizationTaxesView']),
},
// TODO: Uncomment when dunnings feature is implemented
// {
// title: translate('text_17285747264958mqbtws3em8'),
// link: DUNNINGS_SETTINGS_ROUTE,
// match: [DUNNINGS_SETTINGS_ROUTE],
// hidden: !hasPermissions(['dunningCampaignsView']),
// },
{
title: translate('text_17285747264958mqbtws3em8'),
link: DUNNINGS_SETTINGS_ROUTE,
match: [DUNNINGS_SETTINGS_ROUTE],
hidden: !hasPermissions(['dunningCampaignsView']),
},
{
title: translate('text_6407684eaf41130074c4b2a1'),
link: EMAILS_SETTINGS_ROUTE,
Expand Down

0 comments on commit da7a6f4

Please sign in to comment.