Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
2 changes: 1 addition & 1 deletion Composer/packages/client/src/Onboarding/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const getTeachingBubble = (id: string | undefined): TeachingBubble => {
},
};

case 'projectSettings':
case 'publish':
return {
content: formatMessage('Publish your bot to Azure and manage published bots here.'),
headline: formatMessage('Configure and publish'),
Expand Down
4 changes: 3 additions & 1 deletion Composer/packages/client/src/components/NavItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ export const NavItem: React.FC<INavItemProps> = (props) => {

const active = (pathname.startsWith(to) || match?.test(pathname)) ?? false;

const addRef = useCallback((ref) => onboardingAddCoachMarkRef({ [`nav${labelName.replace(' ', '')}`]: ref }), []);
const addRef = useCallback((ref) => onboardingAddCoachMarkRef({ [`nav${labelName.replace(' ', '')}`]: ref }), [
labelName,
]);

const getIcon = (iconName: string) => {
let navIcon;
Expand Down