Skip to content

Commit

Permalink
remove solos
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcoombs2000 committed Sep 23, 2024
1 parent 5a6ecb9 commit e892478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/controllers/Profile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export default {
const hasCerts = certs.map(cert => cert.code);
let certsToShow = [];
certs.forEach(cert => {
if(cert.class === "solo" || cert.class === "major" || cert.class === "center") {
if(cert.class === "major" || cert.class === "center") {
certsToShow.push(cert);
} else {
const certPos = cert.code.slice(-3);
Expand Down

0 comments on commit e892478

Please sign in to comment.