diff options
author | Brian Kim <brian@tagg.id> | 2021-07-08 17:22:56 -0400 |
---|---|---|
committer | Brian Kim <brian@tagg.id> | 2021-07-08 17:22:56 -0400 |
commit | e62ba8ca223d92f662016445264030d28009288f (patch) | |
tree | 5df5b5e63e0d61f8de15ec16000cad52bacb8ba9 /src/components/common | |
parent | 8a7ce9dee2eb24f80d84831b1d596f28a0d5c07a (diff) |
Fixed boundaries
Diffstat (limited to 'src/components/common')
-rw-r--r-- | src/components/common/MomentTags.tsx | 2 |
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); } }, |