Skip to content

Commit

Permalink
remove conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
rikukissa committed Dec 16, 2024
1 parent 43f026f commit ec48080
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/form/tennis-club-membership.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'applicant.firstname',
type: 'TEXT',
required: true,
conditionals: [],
label: {
defaultMessage: "Applicant's first name",
description: 'This is the label for the field',
Expand All @@ -66,7 +65,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'applicant.surname',
type: 'TEXT',
required: true,
conditionals: [],
label: {
defaultMessage: "Applicant's surname",
description: 'This is the label for the field',
Expand All @@ -77,7 +75,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'applicant.dob',
type: 'DATE',
required: true,
conditionals: [],
validation: [
{
message: {
Expand All @@ -98,7 +95,6 @@ const TENNIS_CLUB_FORM = defineForm({
// id: 'applicant.image',
// type: 'FILE',
// required: false,
// conditionals: [],
// label: {
// defaultMessage: "Applicant's profile picture",
// description: 'This is the label for the field',
Expand All @@ -119,7 +115,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'recommender.firstname',
type: 'TEXT',
required: true,
conditionals: [],
label: {
defaultMessage: "Recommender's first name",
description: 'This is the label for the field',
Expand All @@ -130,7 +125,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'recommender.surname',
type: 'TEXT',
required: true,
conditionals: [],
label: {
defaultMessage: "Recommender's surname",
description: 'This is the label for the field',
Expand All @@ -141,7 +135,6 @@ const TENNIS_CLUB_FORM = defineForm({
id: 'recommender.id',
type: 'TEXT',
required: true,
conditionals: [],
label: {
defaultMessage: "Recommender's membership ID",
description: 'This is the label for the field',
Expand Down

0 comments on commit ec48080

Please sign in to comment.