Skip to content

Commit

Permalink
Lint Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Raajheer1 committed Oct 27, 2024
1 parent 7e0d00f commit 03e9b00
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/stores/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ const useSidebarStore = defineStore({
return acc;
}, {});

facilityRolesMap.ZDV = ["ATM"];

for (const facility in facilityRolesMap) {
Object.keys(facilityRolesMap).forEach((facility: string) => {
// If ZHQ
if (facility === "ZHQ") {
this.sidebar.push({
Expand Down Expand Up @@ -109,7 +107,7 @@ const useSidebarStore = defineStore({
temp[0].separatorTitle = facility;
this.sidebar.push(...temp);
}
}
});
}
},
},
Expand Down

0 comments on commit 03e9b00

Please sign in to comment.