Skip to content

Commit

Permalink
fix: clear clg
Browse files Browse the repository at this point in the history
  • Loading branch information
mxerf committed Aug 30, 2024
1 parent 004a0c3 commit 50d46b2
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions frontend/src/pages/Flow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,11 +276,7 @@ export default function Flow() {
)

const [mousePos, setMousePos] = useState({ x: 0, y: 0 })

useEffect(() => {
console.log({ disableCopyPaste })
}, [disableCopyPaste])


useEffect(() => {
const kbdHandler = (e: KeyboardEvent) => {
if ((e.ctrlKey || e.metaKey) && e.key === "c" && !disableCopyPaste) {
Expand Down

0 comments on commit 50d46b2

Please sign in to comment.