Skip to content
Merged
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 @@ -33,7 +33,7 @@ const MinisterHousingAllowancePage: React.FC = () => {
return (
<>
<Head>
<title>{`${appName} | ${t('HR Tools | MHA Calculation Form')}`}</title>
<title>{`${appName} | ${t('HR Tools | MHA Calculation Tool')}`}</title>
</Head>
<UserTypeAccess
requireStaffAccount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ describe('NavMenu', () => {
getByRole('menuitem', { name: 'MPD Goal Calculator' }),
).toBeInTheDocument();
expect(
getByRole('menuitem', { name: 'MHA Calculation Form' }),
getByRole('menuitem', { name: 'MHA Calculation Tool' }),
).toBeInTheDocument();
expect(
getByRole('menuitem', { name: 'Additional Salary Request' }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ describe('MultiPageMenu', () => {
expect(getByText('Salary Calculation Form')).toBeInTheDocument();
expect(getByText('Savings Fund Transfer')).toBeInTheDocument();
expect(getByText('MPD Goal Calculator')).toBeInTheDocument();
expect(getByText('MHA Calculation Form')).toBeInTheDocument();
expect(getByText('MHA Calculation Tool')).toBeInTheDocument();
expect(getByText('Additional Salary Request')).toBeInTheDocument();
expect(getByText('Ministry Partner Reminders')).toBeInTheDocument();
});
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useHrToolsNavItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function useHrToolsNavItems(): NavItems[] {
},
{
id: 'mhaCalculator',
title: t('MHA Calculation Form'),
title: t('MHA Calculation Tool'),
hideItem: inMhaIneligibleGroup,
},
{
Expand Down
Loading