Merge branch 'develop' into improve-file-drop-ui

This commit is contained in:
Šimon Brandner 2021-02-25 18:12:37 +01:00
commit c1a105f071
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
243 changed files with 17703 additions and 6293 deletions

View file

@ -17,6 +17,7 @@ limitations under the License.
import { createContext } from "react";
import {IState} from "../components/structures/RoomView";
import {Layout} from "../settings/Layout";
const RoomContext = createContext<IState>({
roomLoading: true,
@ -40,7 +41,7 @@ const RoomContext = createContext<IState>({
statusBarVisible: false,
canReact: false,
canReply: false,
useIRCLayout: false,
layout: Layout.Group,
matrixClientIsReady: false,
dragCounter: 0,
});