Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerhut committed Jul 9, 2020
1 parent e430dc6 commit 800982b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dashboard/src/pages/ClusterStatus/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ const ClusterStatus: FC = () => {
const { clusters } = React.useContext(ClusterContext)
const { currentTeamId } = React.useContext(TeamContext)
const [selectedValue, setSelectedValue] = useState('')
const [vcStatus, setVcStatus] = useState([])
const [userStatus, setUserStatus] = useState([])
const [nodeStatus, setNodeStatus] = useState([])
const [vcStatus, setVcStatus] = useState<any[]>([])
const [userStatus, setUserStatus] = useState<any[]>([])
const [nodeStatus, setNodeStatus] = useState<any[]>([])
const [showIframe, setShowIframe] = useState(true)
const [iframeUrl, setIframeUrl] = React.useState('')
const [iframeUrlForPerVC, setIframeUrlForPerVC] = React.useState('')
Expand Down

0 comments on commit 800982b

Please sign in to comment.