Skip to content

Commit

Permalink
Merge pull request #23 from itsvick/main
Browse files Browse the repository at this point in the history
Issue #1 feat: Removed default value
  • Loading branch information
itsvick authored Nov 8, 2023
2 parents 602a705 + 2678143 commit 022127b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cohort/src/pages/CohortDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const CohortDetails = ({ footerLinks, setAlert, appName }) => {
const [selfAttendance, setSelfAttendance] = React.useState({});
const [showModal, setShowModal] = React.useState(false);
const [cohortDetails, setCohortDetails] = React.useState({});
const [fields, setFields] = React.useState([{label: 'test', values: "vals"}]);
const [fields, setFields] = React.useState([]);
const [loading, setLoading] = React.useState(true);
let newAvatar = localStorage.getItem("firstName");
const { cohortId } = useParams();
Expand Down

0 comments on commit 022127b

Please sign in to comment.