fix build

pull/725/head
Audric Ackermann 5 years ago
parent 64b067dfe1
commit 25d0fff95f

@ -1,10 +1,5 @@
import React from 'react';
import { Contact, MemberList } from './MemberList';
import {
SessionIconButton,
SessionIconSize,
SessionIconType,
} from '../session/icon';
import { SessionModal } from '../session/SessionModal';
import { SessionButton } from '../session/SessionButton';

@ -172,7 +172,6 @@ export class SessionPasswordModal extends React.Component<Props, State> {
}
private closeDialog() {
window.removeEventListener('keyup', this.onEnter);
if (this.props.onClose) {
this.props.onClose();

@ -10,7 +10,7 @@ import { SmartLeftPane } from '../smart/LeftPane';
const FilteredLeftPane = SmartLeftPane as any;
export const createLeftPane = (store: Store) => (
<Provider store={store}>
<Provider store={store as any}>
<FilteredLeftPane />
</Provider>
);

@ -24,7 +24,7 @@
// Strict Type-Checking Options
"strict": true, // Enable all strict type-checking options.
"skipLibCheck": true,
// Additional Checks
"noUnusedLocals": true, // Report errors on unused locals.
"noUnusedParameters": true, // Report errors on unused parameters.

Loading…
Cancel
Save