mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
lint
This commit is contained in:
parent
065a70b63f
commit
16d02f24bd
@ -108,7 +108,7 @@ import SoftLogout from './auth/SoftLogout';
|
||||
import { makeRoomPermalink } from "../../utils/permalinks/Permalinks";
|
||||
import { copyPlaintext } from "../../utils/strings";
|
||||
import { PosthogAnalytics } from '../../PosthogAnalytics';
|
||||
import { initSentry, sendSentryReport } from "../../sentry";
|
||||
import { initSentry } from "../../sentry";
|
||||
|
||||
/** constants for MatrixChat.state.view */
|
||||
export enum Views {
|
||||
|
@ -71,7 +71,7 @@ export default class ErrorBoundary extends React.PureComponent<{}, IState> {
|
||||
private onBugReport = (): void => {
|
||||
Modal.createTrackedDialog('Bug Report Dialog', '', BugReportDialog, {
|
||||
label: 'react-soft-crash',
|
||||
error: this.state.error
|
||||
error: this.state.error,
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -451,6 +451,8 @@ export default class EventTile extends React.Component<IProps, IState> {
|
||||
client.on("Room.receipt", this.onRoomReceipt);
|
||||
this.isListeningForReceipts = true;
|
||||
}
|
||||
|
||||
throw new Error("oops");
|
||||
}
|
||||
|
||||
// TODO: [REACT-WARNING] Replace with appropriate lifecycle event
|
||||
|
@ -21,7 +21,7 @@ import { MatrixClientPeg } from "./MatrixClientPeg";
|
||||
import SettingsStore from "./settings/SettingsStore";
|
||||
import { MatrixClient } from "../../matrix-js-sdk";
|
||||
|
||||
async function getStorageOptions(): Record<string, string> {
|
||||
async function getStorageOptions(): Promise<Record<string, string>> {
|
||||
const result = {};
|
||||
|
||||
// add storage persistence/quota information
|
||||
@ -65,7 +65,7 @@ function getEnabledLabs(): string {
|
||||
}
|
||||
}
|
||||
|
||||
async function getCryptoContext(client: MatrixClient): Record<String, String> {
|
||||
async function getCryptoContext(client: MatrixClient): Promise<Record<string, string>> {
|
||||
if (!client.isCryptoEnabled()) {
|
||||
return {};
|
||||
}
|
||||
@ -98,7 +98,7 @@ async function getCryptoContext(client: MatrixClient): Record<String, String> {
|
||||
};
|
||||
}
|
||||
|
||||
function getDeviceContext(client: MatrixClient): Record<String, String> {
|
||||
function getDeviceContext(client: MatrixClient): Record<string, string> {
|
||||
const result = {
|
||||
"device_id": client?.deviceId,
|
||||
"mx_local_settings": localStorage.getItem('mx_local_settings'),
|
||||
@ -114,7 +114,7 @@ function getDeviceContext(client: MatrixClient): Record<String, String> {
|
||||
return result;
|
||||
}
|
||||
|
||||
async function getContexts() {
|
||||
async function getContexts(): Promise<Record<string, any>> {
|
||||
const client = MatrixClientPeg.get();
|
||||
return {
|
||||
"user": getUserContext(client),
|
||||
@ -124,7 +124,7 @@ async function getContexts() {
|
||||
};
|
||||
}
|
||||
|
||||
export async function sendSentryReport(userText: string, issueUrl: string, error: Error): void {
|
||||
export async function sendSentryReport(userText: string, issueUrl: string, error: Error): Promise<void> {
|
||||
const sentryConfig = SdkConfig.get()["sentry"];
|
||||
if (!sentryConfig) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user