Skip to content

Commit

Permalink
Bugfix for show migration
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Jan 11, 2024
1 parent c4be9a9 commit 3911231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teams-gui/src/pages/TeamDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const TeamDetail = ({user, showMembers = false}) => {
});
const [isNewTeam, setIsNewTeam] = useState(showMembers);
const [showAddMembersForm, setShowAddMembersForm] = useState(showMembers);
const [showMigrateForm, setShowShowMigrateForm] = useState(showMembers);
const [showMigrateForm, setShowShowMigrateForm] = useState(false);
const [alerts, setAlerts] = useState([]);
const [searchQuery, setSearchQuery] = useState("");
const [memberList, setMembersList] = useState([]);
Expand Down

0 comments on commit 3911231

Please sign in to comment.