Skip to content

Commit

Permalink
fix: filters OTHER from CFP
Browse files Browse the repository at this point in the history
  • Loading branch information
theClarkSell committed Apr 9, 2022
1 parent 919cc77 commit 07b7dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/activities/_components/form/_Attributes.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<legend class="sr-only">Target Location</legend>
<div
class="flex w-full flex-col space-y-4 rounded-md sm:flex-row sm:space-y-0 sm:space-x-4">
{#each targetLocation.options as option}
{#each targetLocation.options.filter((i) => i.value !== 'OTHER') as option}
<div class="flex-grow">
<label
class="relative flex cursor-pointer rounded-lg border border-gray-200 bg-white p-4">
Expand Down

0 comments on commit 07b7dc9

Please sign in to comment.