From 45bef6da7b2760f4027bf51bddd35e125440aead Mon Sep 17 00:00:00 2001 From: spelkey-ucd Date: Mon, 29 Jan 2024 15:09:01 -0500 Subject: [PATCH] #272 --- src/editor/lib/block-components/debounced-text.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/editor/lib/block-components/debounced-text.js b/src/editor/lib/block-components/debounced-text.js index 2e32bb1..d526b54 100644 --- a/src/editor/lib/block-components/debounced-text.js +++ b/src/editor/lib/block-components/debounced-text.js @@ -1,4 +1,4 @@ -import { debounce } from 'lodash'; +import debounce from 'lodash/debounce'; import { html } from "../utils"; import { useEffect, useState, useCallback } from '@wordpress/element'; @@ -36,4 +36,4 @@ function DebouncedText({ `; } -export default DebouncedText \ No newline at end of file +export default DebouncedText