Skip to content
Open
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
3 changes: 2 additions & 1 deletion apps/backend/src/routes/webhooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,5 @@ export async function webhookRoutes(app: FastifyInstance): Promise<void> {
message: 'Secret rotated successfully. Store this secret — it will not be shown again.',
};
});
}
}
.catch(err => console.error("Promise.all failed:", err));
3 changes: 2 additions & 1 deletion apps/backend/src/services/cardService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,4 +478,5 @@ export async function viewSavedCard(app:FastifyInstance, userId:string, page: nu
}

return savedCards
}
}
.catch(err => console.error("Promise.all failed:", err));
2 changes: 1 addition & 1 deletion apps/mobile/src/screens/WebViewScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export default function WebViewScreen({ navigation, route }: Props) {
var allEls = document.querySelectorAll('button, a, span, [role="button"], li');
for (var i = 0; i < allEls.length; i++) {
var el = allEls[i];
var text = (el.textContent || '').replace(new RegExp('\\s+', 'g'), ' ').trim().toLowerCase();
var text = (el.textContent || '').replace(/\\s+/g, ' ').trim().toLowerCase();
var aria = (el.getAttribute('aria-label') || '').toLowerCase();
var combined = text + ' ' + aria;
for (var j = 0; j < SUCCESS_KEYWORDS.length; j++) {
Expand Down
Loading