Yoctol / react-messenger-customer-chat

React component for messenger customer chat plugin
MIT License
272 stars 69 forks source link

fix: props.appId should be optional #59

Closed chentsulin closed 4 years ago

chentsulin commented 4 years ago

close #40

appId is used to call FB.init:

window.fbAsyncInit = function() {
    FB.init({
      appId            : 'your-app-id',
      autoLogAppEvents : true,
      xfbml            : true,
      version          : 'v7.0'
    });
};

It's default value is null:

截圖 2020-06-30 上午1 50 39