فهرست منبع

setState from response

Steven Fukase 5 سال پیش
والد
کامیت
b74b9c83f9
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

+ 2 - 1
src/client/js/components/Admin/SlackIntegration/SlackIntegration.jsx

@@ -17,7 +17,8 @@ const SlackIntegration = (props) => {
 
   const fetchData = useCallback(async() => {
     try {
-      console.log(await appContainer.apiv3.get('slack-integration/'));
+      const response = await appContainer.apiv3.get('slack-integration/');
+      setCurrentBotType(response.currentBotType);
     }
     catch (err) {
       toastError(err);