You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing the package by npm (or yarn) there isn't any scss directory inside react-fuse-picker/es, so the application can't find ./scss/index.scss. After copying that directory from the repository manually, it works.
Another solution is removing import "./scss/index.scss"; and adding import "../umd/main.css"; in es/index.js or component itself.
The text was updated successfully, but these errors were encountered:
After installing the package by npm (or yarn) there isn't any
scss
directory insidereact-fuse-picker/es
, so the application can't find./scss/index.scss
. After copying that directory from the repository manually, it works.Another solution is removing
import "./scss/index.scss";
and addingimport "../umd/main.css";
ines/index.js
or component itself.The text was updated successfully, but these errors were encountered: