Skip to content

Commit

Permalink
feat(web): add warning about embedding settings increasing processing…
Browse files Browse the repository at this point in the history
… time

Signed-off-by: Jordan Shatford <[email protected]>
  • Loading branch information
jordanshatford committed Oct 11, 2023
1 parent fe14956 commit dd25d51
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion apps/web/src/routes/settings/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { AudioFormat, DownloadQuality, DownloadType, VideoFormat } from '@yd/client';
import { toast, Select, Tabs, GearIcon, DownloadIcon, CodeBracketIcon } from '@yd/ui';
import { Alert, toast, Select, Tabs, GearIcon, DownloadIcon, CodeBracketIcon } from '@yd/ui';
import { settings, userSettings } from '$lib/stores/settings';
import config from '$lib/config';
Expand Down Expand Up @@ -93,6 +93,11 @@
</div>
{:else if activePage === 'embed'}
<div class="mt-2">
<Alert
variant="warning"
title="Warning!"
description="Enabling these options could drastically increase the processing time."
/>
<Select
id="metadata"
title="Metadata:"
Expand Down

1 comment on commit dd25d51

@vercel
Copy link

@vercel vercel bot commented on dd25d51 Oct 11, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.