mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Fix types
This commit is contained in:
parent
73fdef2174
commit
a3d09937d6
2 changed files with 5 additions and 5 deletions
|
@ -40,12 +40,12 @@ const useMapWithStyle = ({
|
|||
}: {
|
||||
id: string;
|
||||
centerGeoUri?: string;
|
||||
onError(error: Error): void;
|
||||
onError?(error: Error): void;
|
||||
interactive?: boolean;
|
||||
bounds?: Bounds;
|
||||
allowGeolocate: boolean;
|
||||
allowGeolocate?: boolean;
|
||||
}): {
|
||||
map: maplibregl.Map;
|
||||
map: maplibregl.Map | undefined;
|
||||
bodyId: string;
|
||||
} => {
|
||||
const bodyId = `mx_Map_${id}`;
|
||||
|
@ -122,7 +122,7 @@ const onGeolocateError = (e: GeolocationPositionError): void => {
|
|||
logger.error("Could not fetch location", e);
|
||||
Modal.createDialog(ErrorDialog, {
|
||||
title: _t("Could not fetch location"),
|
||||
description: positionFailureMessage(e.code),
|
||||
description: positionFailureMessage(e.code) ?? "",
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ limitations under the License.
|
|||
import { _t } from "../../languageHandler";
|
||||
import SdkConfig from "../../SdkConfig";
|
||||
|
||||
export const positionFailureMessage = (code: number): string => {
|
||||
export const positionFailureMessage = (code: number): string | undefined => {
|
||||
const brand = SdkConfig.get().brand;
|
||||
switch (code) {
|
||||
case 1:
|
||||
|
|
Loading…
Reference in a new issue