Skip to content

Commit

Permalink
🔇 removed left-over debugging console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
MattMoony committed Jun 2, 2024
1 parent 48a3008 commit 68d8c48
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion web/src/components/info/OrganBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ watch(
async () => {
if (props.organ && props.organ.id > 0) {
image.value = props.organ.pic.src();
console.log('banner socials');
const rawSocials = await props.organ.socials.get();
socials.value = {};
for (const social of rawSocials) {
Expand Down
1 change: 0 additions & 1 deletion web/src/components/info/details/OrganSocials.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ const removeSocial = async (social: OrganSocials) => {
watch(() => props.organ, async () => {
if (!props.organ) return;
console.log('socials socials');
socials.value = await props.organ.socials.get();
}, { immediate: true, });
</script>
Expand Down

0 comments on commit 68d8c48

Please sign in to comment.