diff options
Diffstat (limited to 'vnext/src/ui/Contacts.js')
-rw-r--r-- | vnext/src/ui/Contacts.js | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/vnext/src/ui/Contacts.js b/vnext/src/ui/Contacts.js index 1e3e3072..07e4dfc4 100644 --- a/vnext/src/ui/Contacts.js +++ b/vnext/src/ui/Contacts.js @@ -10,7 +10,7 @@ import { ChatSpinner } from './Spinner'; /** * */ -export default function Contacts(props) { +export default function Contacts() { const [pms, setPms] = useState([]); useEffect(() => { getChats() @@ -34,11 +34,6 @@ export default function Contacts(props) { ); } -const wrapperStyle = { - display: 'flex', - backgroundColor: '#fff' -}; - const chatListStyle = { display: 'flex', flexDirection: 'column', |