From f920c1fb3f7bc51d2ee128ec1401430f988cb933 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 30 Oct 2020 17:35:16 +0000 Subject: [PATCH] There's a type for everything! Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/rooms/AuxPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/rooms/AuxPanel.tsx b/src/components/views/rooms/AuxPanel.tsx index 18080e6063..465c9c749a 100644 --- a/src/components/views/rooms/AuxPanel.tsx +++ b/src/components/views/rooms/AuxPanel.tsx @@ -238,7 +238,7 @@ export default class AuxPanel extends React.Component { "mx_RoomView_auxPanel": true, "mx_RoomView_auxPanel_fullHeight": this.props.fullHeight, }); - const style:any = {}; + const style: React.CSSProperties = {}; if (!this.props.fullHeight) { style.maxHeight = this.props.maxHeight; }