Skip to content

Commit

Permalink
fix: hide dpa on selfhosted
Browse files Browse the repository at this point in the history
  • Loading branch information
TorstenDittmann committed Jan 9, 2024
1 parent dd27d1f commit e8223ff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import Delete from './deleteOrganizationModal.svelte';
import DownloadDPA from './downloadDPA.svelte';
import { Submit, trackEvent, trackError } from '$lib/actions/analytics';
import { isCloud } from '$lib/system';
export let data;
let name: string;
Expand Down Expand Up @@ -64,7 +65,9 @@
</CardGrid>
</Form>

<DownloadDPA />
{#if isCloud}
<DownloadDPA />
{/if}

<CardGrid danger>
<div>
Expand Down

3 comments on commit e8223ff

@vercel
Copy link

@vercel vercel bot commented on e8223ff Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

console-cloud – ./

console-cloud.vercel.app
console-cloud-appwrite.vercel.app
console-cloud-git-main-appwrite.vercel.app

@vercel
Copy link

@vercel vercel bot commented on e8223ff Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on e8223ff Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

console-preview – ./

console-preview-git-main-appwrite.vercel.app
console-next.vercel.app
console-preview-appwrite.vercel.app

Please sign in to comment.