aboutsummaryrefslogtreecommitdiff
path: root/src/components/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/common')
-rw-r--r--src/components/common/MomentTags.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/common/MomentTags.tsx b/src/components/common/MomentTags.tsx
index 6ea76508..37069e18 100644
--- a/src/components/common/MomentTags.tsx
+++ b/src/components/common/MomentTags.tsx
@@ -90,7 +90,6 @@ const MomentTags: React.FC<MomentTagsProps> = ({
// Checks for and adds boundaries
if (boundaries) {
- console.log(boundaries);
const newBounds = [...boundariesList];
if (boundaries.top) {
newBounds[2] = boundaries.top;
@@ -104,7 +103,6 @@ const MomentTags: React.FC<MomentTagsProps> = ({
if (boundaries.right) {
newBounds[1] = boundaries.right;
}
- console.log(newBounds);
setBoundariesList(newBounds);
}
},