Skip to content

Commit

Permalink
remove bio for valid speaker check (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
qiyundai authored Sep 24, 2024
1 parent c037f2e commit 2d34042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecc/components/profile-container/profile-container.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class ProfileContainer extends LitElement {
}

isValidSpeaker(profile) {
return profile.firstName && profile.lastName && profile.title && profile.bio;
return profile.firstName && profile.lastName && profile.title;
}

getProfiles() {
Expand Down

0 comments on commit 2d34042

Please sign in to comment.