Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10836 from EtherealEngine/int
Browse files Browse the repository at this point in the history
Int
  • Loading branch information
DanielBelmes authored Aug 3, 2024
2 parents 1320ecd + eeee571 commit fef7219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import React, { useEffect } from 'react'
import { useTranslation } from 'react-i18next'
import { Link } from 'react-router-dom'

import config from '@etherealengine/common/src/config'
import { authenticationSettingPath, UserID } from '@etherealengine/common/src/schema.type.module'
import { useHookstate, useMutableState } from '@etherealengine/hyperflux'
import { useFind } from '@etherealengine/spatial/src/common/functions/FeathersHooks'
Expand Down Expand Up @@ -56,7 +55,7 @@ const defaultState = {
descr: ''
}

const termsOfService = config.client.tosAddress ?? '/terms-of-service'
const termsOfService = 'https://ir.world/terms-of-service' //config.client.tosAddress ?? '/terms-of-service'

const MagicLinkEmail = ({ type, isAddConnection }: Props): JSX.Element => {
const auth = useMutableState(AuthState)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import { UserMenus } from '../../../UserUISystem'
import styles from '../index.module.scss'
import { PopupMenuServices } from '../PopupMenuService'

const termsOfService = config.client.tosAddress ?? '/terms-of-service'
const termsOfService = 'https://ir.world/terms-of-service' //config.client.tosAddress ?? '/terms-of-service'

const logger = multiLogger.child({ component: 'engine:ecs:ProfileMenu', modifier: clientContextParams })

Expand Down

0 comments on commit fef7219

Please sign in to comment.