jpuri / react-draft-wysiwyg

A Wysiwyg editor build on top of ReactJS and DraftJS. https://jpuri.github.io/react-draft-wysiwyg
MIT License
6.38k stars 1.16k forks source link

react-draft-wysiwyg toolbar options not opening #1431

Closed Williams25 closed 2 months ago

Williams25 commented 3 months ago

react-draft-wysiwyg toolbar options not opening emoji, font size, font family, link, upload image and color pick.

next 14x react 18x

Captura de tela 2024-04-05 131203

chrisidakwo commented 2 months ago

Update your Next.js configuration file and set the property reactStrictMode to false.

Something like this, say your config file is called next.config.mjs:

const nextConfig = {
  reactStrictMode: false,
  ...
};

export default nextConfig; // Or however you export it