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
Had a small issue to note, when using nice-form-react with WebPack. Trying to load the module as per the documentation:
//nice-form adapter configuration for antd
import antdAdapter from '@ebay/nice-form-react/adapters/antdAdapter';
import { config as niceFormConfig } from '@ebay/nice-form-react';
niceFormConfig.addAdapter(antdAdapter);
and WebPack complains that it cannot find the antdAdapter module. Simple change to:
import antdAdapter from '@ebay/nice-form-react/lib/esm/adapters/antdAdapter';
and everything works as expected.
The text was updated successfully, but these errors were encountered:
Had a small issue to note, when using nice-form-react with WebPack. Trying to load the module as per the documentation:
and WebPack complains that it cannot find the antdAdapter module. Simple change to:
and everything works as expected.
The text was updated successfully, but these errors were encountered: