Skip to content

Commit

Permalink
Update schema.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Vayras authored Jan 24, 2024
1 parent c9844c5 commit 77fda54
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/app/src/components/form/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {
estimated_budget_15_min,
help_wanted_coding_task_schema,
help_wanted_other_schema,
organization
} from '../../config/bounties';
import { FormField } from './utils';

Expand All @@ -28,7 +27,6 @@ const estimated_time = GetValue(estimation);
const helpType_wanted_coding_task_schema = GetValue(help_wanted_coding_task_schema);
const helpType_wanted_other_schema = GetValue(help_wanted_other_schema);
const estimated_budget_15_min_options = GetValue(estimated_budget_15_min);
const organization_options = GetValue(organization);

// this is source of truth for widget items!
export const meSchema: FormField[] = [
Expand Down Expand Up @@ -676,7 +674,7 @@ export const wantedCodingTaskSchema: FormField[] = [
name: 'org_uuid',
label: 'Organization (optional)',
type: 'select',
options: organization_options,
options: [],
validator: strValidatorNotRequired
},
{
Expand Down

0 comments on commit 77fda54

Please sign in to comment.