Skip to content

Commit

Permalink
Removed some files.
Browse files Browse the repository at this point in the history
  • Loading branch information
barankyle committed Apr 22, 2021
1 parent 8b29d21 commit fd91dff
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 16 deletions.
18 changes: 8 additions & 10 deletions packages/client-core/src/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@ export function validatePhoneNumber (phone: string): boolean { return (/^(\+\d{1

export class Config {
static publicRuntimeConfig = {
title: '',
title: "The Overlay",
dev: false,
loginDisabled: false,
logo: '',
apiServer: '',
appServer: '',
gameserver: '',
gameserverDomain: '',
siteTitle: '',
siteDescription: '',
feathersStoreKey: '',
localStorageKey: '',
logo: "./logo.svg",
apiServer: "https://127.0.0.1:3030",
gameserver: "https://127.0.0.1:3030",
siteTitle: "The Overlay",
siteDescription: "Connected Worlds for Everyone",
feathersStoreKey: "TheOverlay-Auth-Store",
localStorageKey: "theoverlay-client-store-key-v1",
auth: {
enableSmsMagicLink: true,
enableEmailMagicLink: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import ProfileMenu from './menus/ProfileMenu';
import SettingMenu from './menus/SettingMenu';
import ShareMenu from './menus/ShareMenu';
// @ts-ignore
import styles from './style.module.scss';
import styles from './UserMenu.module.scss';
import { UserMenuProps, Views } from './util';

type StateType = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import CardContent from '@material-ui/core/CardContent';
import { NavigateNext, NavigateBefore, Check, ArrowBack, PersonAdd, Delete, Close } from '@material-ui/icons';
// @ts-ignore
// @ts-ignore
import styles from '../style.module.scss';
import styles from '../UserMenu.module.scss';
import { LazyImage } from '../../../../common/components/LazyImage';
import { Views } from '../util';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { getOrbitControls } from '@xr3ngine/engine/src/input/functions/loadOrbit
import { Views } from '../util';
//@ts-ignore
// @ts-ignore
import styles from '../style.module.scss';
import styles from '../UserMenu.module.scss';
import { AVATAR_FILE_ALLOWED_EXTENSIONS, MAX_AVATAR_FILE_SIZE, MIN_AVATAR_FILE_SIZE, MAX_ALLOWED_TRIANGLES, THUMBNAIL_HEIGHT, THUMBNAIL_WIDTH } from '@xr3ngine/engine/src/common/constants/AvatarConstants';


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { validateEmail, validatePhoneNumber } from '../../../../helper';

//@ts-ignore
// @ts-ignore
import styles from '../style.module.scss';
import styles from '../UserMenu.module.scss';

interface Props {
changeActiveMenu?: any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import FormControlLabel from '@material-ui/core/FormControlLabel';
import Slider from '@material-ui/core/Slider';
import Typography from '@material-ui/core/Typography';
// @ts-ignore
import styles from '../style.module.scss';
import styles from '../UserMenu.module.scss';
import { WebGLRendererSystem } from '@xr3ngine/engine/src/renderer/WebGLRendererSystem';
import { EngineEvents } from '@xr3ngine/engine/src/ecs/classes/EngineEvents';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Send, FileCopy } from '@material-ui/icons';
import { isMobileOrTablet } from '@xr3ngine/engine/src/common/functions/isMobile';
//@ts-ignore
// @ts-ignore
import styles from '../style.module.scss';
import styles from '../UserMenu.module.scss';

const ShareMenu = (props: any): any => {
const refLink = useRef(null);
Expand Down

0 comments on commit fd91dff

Please sign in to comment.