fix(ui): logs rm

This commit is contained in:
nick-delirium 2024-01-25 16:34:02 +01:00
parent 4bc7c2294d
commit 3d0f2d6423
4 changed files with 0 additions and 4 deletions

View file

@ -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

View file

@ -39,7 +39,6 @@ const useDrawer = () => {
});
const showDrawer = (component: React.ReactNode, props: DrawerProps) => {
console.log('here');
setContent(component);
setDrawerProps(props);
setVisible(true);

View file

@ -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

View file

@ -156,7 +156,6 @@ export default class RemoteControl {
requestReleaseRemoteControl = () => {
const remoteControl = this.store.get().remoteControl;
console.log(remoteControl);
if (remoteControl === RemoteControlStatus.Requesting) {
return;
}