Skip to content

Commit

Permalink
Fix the allowed extensions for uploading .env files
Browse files Browse the repository at this point in the history
It should not include the leading dot.
  • Loading branch information
stnguyen90 authored Nov 20, 2023
1 parent 6bf696a commit 3caf93f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
{/if}
</div>

<InputFile bind:files allowedFileExtensions={['.env']} />
<InputFile bind:files allowedFileExtensions={['env']} />

<svelte:fragment slot="footer">
<Button text on:click={() => (show = false)}>Cancel</Button>
Expand Down

0 comments on commit 3caf93f

Please sign in to comment.