We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7db00a commit e8d337aCopy full SHA for e8d337a
script.js
@@ -51,7 +51,9 @@ const observer = new MutationObserver((mutations) => {
51
const modal = document.querySelector(
52
'[data-testid="api-playground-modal"]'
53
);
54
- if (modal) {
+ const title = document.querySelector("#page-title");
55
+ const isQuotePage = "Get Quote" === title?.textContent;
56
+ if (modal && isQuotePage) {
57
if (document.getElementById("custom-vm-quicksets")) {
58
return;
59
}
0 commit comments