fix(ui): logs rm
This commit is contained in:
parent
4bc7c2294d
commit
3d0f2d6423
4 changed files with 0 additions and 4 deletions
|
|
@ -19,7 +19,6 @@ const iconMap = {
|
|||
} as const
|
||||
|
||||
const Tabs = ({ tabs, active, onClick, border = true, className }: Props) => {
|
||||
console.log(tabs)
|
||||
return (
|
||||
<div className={cn(stl.tabs, className, { [stl.bordered]: border })} role="tablist">
|
||||
<Segmented
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ const useDrawer = () => {
|
|||
});
|
||||
|
||||
const showDrawer = (component: React.ReactNode, props: DrawerProps) => {
|
||||
console.log('here');
|
||||
setContent(component);
|
||||
setDrawerProps(props);
|
||||
setVisible(true);
|
||||
|
|
|
|||
|
|
@ -406,7 +406,6 @@ const NetworkPanelComp = observer(
|
|||
const showDetailsModal = (item: any) => {
|
||||
if (item.type === 'websocket') {
|
||||
const socketMsgList = websocketList.filter((ws) => ws.channelName === item.channelName);
|
||||
console.log(socketMsgList)
|
||||
|
||||
return showModal(
|
||||
<WSModal
|
||||
|
|
|
|||
|
|
@ -156,7 +156,6 @@ export default class RemoteControl {
|
|||
|
||||
requestReleaseRemoteControl = () => {
|
||||
const remoteControl = this.store.get().remoteControl;
|
||||
console.log(remoteControl);
|
||||
if (remoteControl === RemoteControlStatus.Requesting) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue