lint
This commit is contained in:
parent
dface1928d
commit
c6202bf653
1 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,4 @@
|
|||
import * as Sentry from "@sentry/browser";
|
||||
import { Integrations } from "@sentry/tracing";
|
||||
import PlatformPeg from "./PlatformPeg";
|
||||
import SdkConfig from "./SdkConfig";
|
||||
import { MatrixClientPeg } from "./MatrixClientPeg";
|
||||
|
@ -7,7 +6,7 @@ import SettingsStore from "./settings/SettingsStore";
|
|||
import { MatrixClient } from "../../matrix-js-sdk";
|
||||
|
||||
async function getStorageOptions(): Record<string, string> {
|
||||
const result = {}
|
||||
const result = {};
|
||||
|
||||
// add storage persistence/quota information
|
||||
if (navigator.storage && navigator.storage.persisted) {
|
||||
|
@ -106,7 +105,7 @@ async function getContext() {
|
|||
"user": getUserContext(client),
|
||||
"crypto": await getCryptoContext(client),
|
||||
"device": getDeviceContext(client),
|
||||
"storage": await getStorageOptions()
|
||||
"storage": await getStorageOptions(),
|
||||
},
|
||||
"extra": {
|
||||
|
||||
|
|
Loading…
Reference in a new issue