diff --git a/.changeset/tricky-dragons-explain.md b/.changeset/tricky-dragons-explain.md index 211f1cd0b0b5..78ecb1e95752 100644 --- a/.changeset/tricky-dragons-explain.md +++ b/.changeset/tricky-dragons-explain.md @@ -2,6 +2,4 @@ 'astro': patch --- -Small polish to the dev overlay: -- Links inside the Astro panel now open in a new tab -- The "Copy debug info" button will now reset back to its original state after 3.5 seconds without needing to toggle off the plugin +Fixes a number of small user experience bugs with the dev overlay diff --git a/packages/astro/src/runtime/client/dev-overlay/plugins/audit.ts b/packages/astro/src/runtime/client/dev-overlay/plugins/audit.ts index 9f69e47878dc..6961e1227329 100644 --- a/packages/astro/src/runtime/client/dev-overlay/plugins/audit.ts +++ b/packages/astro/src/runtime/client/dev-overlay/plugins/audit.ts @@ -71,7 +71,6 @@ export default { const noAuditIcon = getIconElement('check-circle'); const text = document.createElement('div'); text.textContent = 'No issues found!'; - text.role = 'alert'; if (noAuditIcon) { noAuditIcon.style.width = '24px';