From 9c39011ffde12be003cffdb5641f9c158e27f472 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Mon, 5 Jul 2021 19:58:57 +0530 Subject: [PATCH] feature(ui) - path fix --- frontend/app/components/Assist/ChatWindow/ChatWindow.tsx | 4 +--- .../Assist/components/AssistActions/AssistActions.tsx | 4 ++-- frontend/tsconfig.json | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx b/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx index 8bba93bf3..e84b836bf 100644 --- a/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx +++ b/frontend/app/components/Assist/ChatWindow/ChatWindow.tsx @@ -1,8 +1,6 @@ -import React, { useState, useEffect, FC } from 'react' +import React, { useState, FC } from 'react' import VideoContainer from '../components/VideoContainer' import { Icon, Popup } from 'UI' -import stl from './chatWindow.css' -import { callPeer } from 'App/player' import cn from 'classnames' export interface Props { diff --git a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx index e32df2298..652ac7099 100644 --- a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx +++ b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx @@ -3,10 +3,10 @@ import { Popup, Icon } from 'UI' import { connect } from 'react-redux' import cn from 'classnames' import { toggleChatWindow } from 'Duck/sessions'; -import stl from './AassistActions.css' +// import stl from './AassistActions.css' import { connectPlayer } from 'Player/store'; import ChatWindow from '../../ChatWindow'; -import { callPeer } from 'App/player' +import { callPeer } from 'Player' import { CallingState } from 'Player/MessageDistributor/managers/AssistManager'; interface Props { diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index b55899b8d..7129fe449 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -14,7 +14,7 @@ "incremental": true, "baseUrl": ".", "paths": { // TODO: one-source truth - "Appo": ["./app"], + "App": ["./app"], "Types": ["./app/types" ], "Types/*": ["./app/types/*"], // Sublime hack "UI": ["./app/components/ui"],