@local-civics/mgmt-ui 0.1.142 → 0.1.143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3325,7 +3325,7 @@ const useStyles = core.createStyles((theme) => ({
|
|
|
3325
3325
|
}));
|
|
3326
3326
|
const Pathway = (props) => {
|
|
3327
3327
|
const { classes } = useStyles();
|
|
3328
|
-
const [tab, setTab] = React.useState("
|
|
3328
|
+
const [tab, setTab] = React.useState("badges");
|
|
3329
3329
|
const numberOfStudents = props.students.length;
|
|
3330
3330
|
numberOfStudents > 0 ? props.students.filter((u) => u.isComplete).length / numberOfStudents : 0;
|
|
3331
3331
|
const numberOfBadgesEarned = numberOfStudents > 0 ? props.students.filter((u) => u.isComplete).length : 0;
|