Skip to content

Commit

Permalink
Remove unneeded console logs from codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Nov 13, 2024
1 parent 62e907d commit 64724fa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions frontend/components/media/MediaMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -269,12 +269,9 @@ onMounted(() => {
map
.loadImage("/icons/from_library/bootstrap_arrow_right.png")
.then((image) => {
console.log("Here1");
if (image) {
map.addImage("route-direction-arrow", image.data);
}
console.log("Here2", image.data);
});
map.on("load", () => {
Expand Down
4 changes: 0 additions & 4 deletions frontend/stores/organization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,6 @@ export const useOrganizationStore = defineStore("organization", {
(text) => text.data._value.results
)[0] as unknown as OrganizationText[];

console.log(`Hereee ${JSON.stringify(orgTextsData)}`);

// Order texts based on the returned organizations.
const orgIds = orgs._value.map((o) => o.id);
const sortedOrgTextsData: OrganizationText[] = [];
Expand All @@ -201,8 +199,6 @@ export const useOrganizationStore = defineStore("organization", {
}
}

console.log(`Hereee ${JSON.stringify(sortedOrgTextsData)}`);

const organizationsWithTexts = orgs._value.map(
(organization: Organization, index: number) => {
const texts = sortedOrgTextsData[index];
Expand Down

0 comments on commit 64724fa

Please sign in to comment.