Skip to content
Closed
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
2 changes: 1 addition & 1 deletion routes/ai-home/stage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ function AISettingsPage() {
>
<Stack className="ai-settings-page" direction="column" gap="md">
{ ! PAGE_DATA.hasValidCredentials && (
<Notice.Root intent="error">
<Notice.Root intent="warning">
<Notice.Description>
{ ! PAGE_DATA.hasCredentials
? __(
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/specs/admin/settings.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test.describe( 'Plugin settings', () => {
await seedCredentials( requestUtils );
} );

test( 'Can visit the settings page and see error message', async ( {
test( 'Can visit the settings page and see warning message', async ( {
admin,
page,
requestUtils,
Expand All @@ -58,7 +58,7 @@ test.describe( 'Plugin settings', () => {
)
).toBeVisible();

// Ensure the no AI Connectors error message is displayed.
// Ensure the no AI Connectors warning message is displayed.
await expect(
page
.locator( '#ai-wp-admin-app' )
Expand Down
Loading