Skip to content

Commit

Permalink
Merge pull request #48 from StephenTangCook/remove-console-logs
Browse files Browse the repository at this point in the history
remove extraneous console logs
  • Loading branch information
themashcodee authored Dec 10, 2024
2 parents 897faf2 + f1125d3 commit a636377
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/components/elements/plain_text_input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ export const PlaintTextInput = (props: TextObjectProps) => {
useEffect(() => {
const handleClickOutside = (e: MouseEvent) => {
const target = e.target as HTMLElement;
console.log({ target });

console.log(target.id);

if (
target.id !== "static_select_popup" &&
Expand Down
3 changes: 0 additions & 3 deletions src/components/elements/static_select_element.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ export const StaticSelectElement = (props: TextObjectProps) => {
useEffect(() => {
const handleClickOutside = (e: MouseEvent) => {
const target = e.target as HTMLElement;
console.log({ target });

console.log(target.id);

if (
target.id !== "static_select_popup" &&
Expand Down

0 comments on commit a636377

Please sign in to comment.