Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Browser Extension's Vite Config #2540

Merged
merged 10 commits into from
Jul 6, 2022
Prev Previous commit
Next Next commit
whittle away TS errors
  • Loading branch information
noi5e committed Jul 5, 2022
commit 347f1f7297b6fff6f78c5bad67948d437852526b
2 changes: 1 addition & 1 deletion packages/lexical-devtools/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function App(): JSX.Element {
const [count, setCount] = useState<number>(0);
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const [editorState, setEditorState] = useState<object>({});
const port = useRef();
const port = useRef<object>({});

useEffect(() => {
// create and initialize the messaging port to receive editorState updates
Expand Down