Skip to content

Commit

Permalink
Fix empty profileValues bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kamicut committed Sep 2, 2021
1 parent eae7aa3 commit 3e8267e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/team-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class TeamEdit extends Component {
try {
let team = await getTeam(id)
let teamAttributes = []
let profileValues = {}
let profileValues = []
if (team.org) {
teamAttributes = await getOrgTeamAttributes(team.org.organization_id)
profileValues = await getTeamProfile(id)
Expand Down

0 comments on commit 3e8267e

Please sign in to comment.