Fix a few types

pull/21833/head
J. Ryan Stinnett 2020-07-10 18:23:27 +01:00
parent 353eae44f2
commit 063e6e3e9c
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ import { _t } from './languageHandler';
const TOAST_KEY = 'rebrand';
const NAG_INTERVAL = 24 * 60 * 60 * 1000;
function getRedirectUrl(url) {
function getRedirectUrl(url): string {
const redirectUrl = new URL(url);
redirectUrl.hash = '';
@ -34,7 +34,7 @@ function getRedirectUrl(url) {
if (url.hostname !== newUrl.hostname || url.pathname !== newUrl.pathname) {
redirectUrl.hostname = newUrl.hostname;
redirectUrl.pathname = newUrl.pathname;
return redirectUrl;
return redirectUrl.toString();
}
return null;
} else if (url.hostname === 'riot.im') {

View File

@ -26,7 +26,7 @@ export enum RebrandDialogKind {
};
interface IProps {
onFinished: () => void;
onFinished: (bool) => void;
kind: RebrandDialogKind,
targetUrl?: string,
}