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 5d9f1fc commit 2e55b3cCopy full SHA for 2e55b3c
src/routes/(console)/organization-[organization]/change-plan/+page.svelte
@@ -108,7 +108,8 @@
108
109
async function trackDowngradeFeedback() {
110
const paidInvoices = await sdk.forConsole.billing.listInvoices(data.organization.$id, [
111
- Query.equal('status', 'succeeded')
+ Query.equal('status', 'succeeded'),
112
+ Query.greaterThan('grossAmount', 0)
113
]);
114
115
await fetch(`${VARS.GROWTH_ENDPOINT}/feedback/billing`, {
0 commit comments