Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -213,7 +213,9 @@ const BotController: React.FC<BotControllerProps> = ({ onHideController, isContr
})}
<div ref={botControllerMenuTarget} css={[startPanelsContainer]}>
<DisableFeatureToolTip
content={formatMessage('PVA bots cannot be run at the moment. Publish the bot to PVA and test it there.')}
content={formatMessage(
'Power Virtual Agents bots cannot be run at the moment. Publish the bot to Power Virtual Agents and test it there.'
)}
isPVABot={isPVABot}
>
<DefaultButton
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import React from 'react';
const calloutProps = { gapSpace: 0 };

const genericDisableMessage = () => {
return formatMessage('PVA bots cannot use this functionality at this time.');
return formatMessage('Power Virtual Agents bots cannot use this functionality at this time.');
};

export const DisableFeatureToolTip: React.FC<{ content?: string; isPVABot: boolean }> = (props) => {
Expand Down
2 changes: 1 addition & 1 deletion extensions/pvaPublish/src/node/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ const getUserFriendlyMessage = (job: PVAPublishJob): string => {
return 'Bot content out of sync. Please check logs.';

case 'UpdatingSnapshot':
return 'Updating bot content in PVA...';
return 'Updating bot content in Power Virtual Agents...';

case 'Validating':
return 'Validating bot assets...';
Expand Down