Skip to content
Open
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 src/pages/shopify-automation-scanner.astro
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ const schema = {
}

const sleep = ms => new Promise(r => setTimeout(r,ms));
const defaultApps = () => ['Klaviyo','Triple Whale','Gorgias'].map(n => appLibrary.find(a => a.name===n)).filter(Boolean);
const defaultApps = () => appLibrary.filter(a => a.name === 'Klaviyo' || a.name === 'Triple Whale' || a.name === 'Gorgias');

// ── RENDER ────────────────────────────────────────────────────
function renderResults(detected, domain) {
Expand Down