File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dashboard/Data/Browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 6
6
* the root directory of this source tree.
7
7
*/
8
8
import { ActionTypes } from 'lib/stores/SchemaStore' ;
9
- import axios from 'axios ' ;
9
+ import { post } from 'lib/AJAX ' ;
10
10
import AccountManager from 'lib/AccountManager' ;
11
11
import AddColumnDialog from 'dashboard/Data/Browser/AddColumnDialog.react' ;
12
12
import CategoryList from 'components/CategoryList/CategoryList.react' ;
@@ -947,7 +947,7 @@ export default class Browser extends DashboardView {
947
947
const user = AccountManager . currentUser ( ) ;
948
948
let playVideoTutorial = user && user . playDatabaseBrowserTutorial ;
949
949
if ( playVideoTutorial ) {
950
- axios . post ( `${ b4aSettings . BACK4APP_API_PATH } /tutorial` , { databaseBrowser : true } ) ;
950
+ post ( `${ b4aSettings . BACK4APP_API_PATH } /tutorial` , { databaseBrowser : true } ) ;
951
951
}
952
952
browser = (
953
953
< DataBrowser
You can’t perform that action at this time.
0 commit comments