Skip to content

Commit

Permalink
chore: rename menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebofill committed Jan 8, 2024
1 parent d23f85d commit 5b4a775
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/context-menus/TabProfileMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface TabsProfilesMenuProps {
* Context menu for managing Tab Profiles.
*/
export const TabProfilesMenu: VFC<TabsProfilesMenuProps> = ({ tabMasterManager }) => {
return <Menu label='Manage Tab Groups'>
return <Menu label='Manage Tab Profiles'>
<TabProfileMenuItems tabMasterManager={tabMasterManager} />
</Menu>;
};
Expand All @@ -20,7 +20,7 @@ export const TabProfilesMenu: VFC<TabsProfilesMenuProps> = ({ tabMasterManager }
* Context menu sub-menu for managing Tab Profiles.
*/
export const TabProfilesSubMenu: VFC<TabsProfilesMenuProps> = ({ tabMasterManager }) => {
return <MenuGroup label='Manage Tab Groups'>
return <MenuGroup label='Manage Tab Profiles'>
<TabProfileMenuItems tabMasterManager={tabMasterManager} />
</MenuGroup>;
};
Expand Down

0 comments on commit 5b4a775

Please sign in to comment.