Fix imports for help & support tab

This was missed, somehow, in the sourcemaps stuff. The tab currently breaks the dialog on load.
pull/21833/head
Travis Ralston 2020-01-15 12:02:23 -07:00
parent dbff2bb9f0
commit dd88809622
1 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,10 @@ import {MatrixClientPeg} from "../../../../../MatrixClientPeg";
import AccessibleButton from "../../../elements/AccessibleButton"; import AccessibleButton from "../../../elements/AccessibleButton";
import SdkConfig from "../../../../../SdkConfig"; import SdkConfig from "../../../../../SdkConfig";
import createRoom from "../../../../../createRoom"; import createRoom from "../../../../../createRoom";
const packageJson = require('../../../../../../package.json'); import packageJson from "../../../../../../package.json";
const Modal = require("../../../../../Modal"); import Modal from "../../../../../Modal";
const sdk = require("../../../../.."); import * as sdk from "../../../../../";
const PlatformPeg = require("../../../../../PlatformPeg"); import PlatformPeg from "../../../../../PlatformPeg";
// if this looks like a release, use the 'version' from package.json; else use // if this looks like a release, use the 'version' from package.json; else use
// the git sha. Prepend version with v, to look like riot-web version // the git sha. Prepend version with v, to look like riot-web version