Pretty fix

This commit is contained in:
David Négrier 2021-12-06 18:20:06 +01:00
parent c27662c315
commit 84f7a8c383
4 changed files with 18 additions and 19 deletions

View file

@ -1,10 +1,10 @@
import * as rax from 'retry-axios';
import * as rax from "retry-axios";
import Axios from "axios";
import { CONTACT_URL, PUSHER_URL, DISABLE_ANONYMOUS, OPID_LOGIN_SCREEN_PROVIDER } from "../Enum/EnvironmentVariable";
import type { CharacterTexture } from "./LocalUser";
import { localUserStore } from "./LocalUserStore";
import axios from "axios";
import {axiosWithRetry} from "./AxiosUtils";
import { axiosWithRetry } from "./AxiosUtils";
export class MapDetail {
constructor(public readonly mapUrl: string, public readonly textures: CharacterTexture[] | undefined) {}