mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: allow org. deletion on self-hosted.
This commit is contained in:
@@ -99,6 +99,4 @@
|
||||
{/if}
|
||||
</Container>
|
||||
|
||||
{#if isCloud && data.invoices}
|
||||
<Delete bind:showDelete invoices={data.invoices} />
|
||||
{/if}
|
||||
<Delete bind:showDelete invoices={data.invoices} />
|
||||
|
||||
+1
-1
@@ -51,7 +51,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
$: upcomingInvoice = invoices.invoices.find((i) => i.status === 'upcoming' && i.amount > 0);
|
||||
$: upcomingInvoice = invoices?.invoices.find((i) => i.status === 'upcoming' && i.amount > 0);
|
||||
</script>
|
||||
|
||||
<Modal
|
||||
|
||||
Reference in New Issue
Block a user