Skip to content

Commit

Permalink
Fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeep-deriv committed Sep 6, 2022
1 parent d2b3a3c commit ba70c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bot-web-ui/src/components/dashboard/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import JoyrideConfig from './joyrideConfig';
import BotBuilder from './bot-builder';
import classNames from 'classnames';
import RunPanel from './run-panel';
import RunStretegy from '../toolbar/runStrategy.jsx';
import RunStretegy from '../toolbar/runStrategy';
import { connect } from 'Stores/connect';
import RootStore from 'Stores/index';

Expand All @@ -22,7 +22,7 @@ const Dashboard = ({ active_tab, setActiveTab }: DashboardProps) => {
const [showSideBar, setshowSideBar] = React.useState<boolean>(true);
const { DashBorardSteps } = JoyrideConfig;
const [tourRun, setTourRun] = React.useState<boolean>(true);
const handleClick = (e: React.MouseEvent) => {
const handleClick = (e: any) => {
e.preventDefault();
setTourRun(true);
};
Expand Down

0 comments on commit ba70c64

Please sign in to comment.