This commit is contained in:
E
2021-03-07 22:51:31 -07:00
parent 14395bdbdd
commit f338e14577
4 changed files with 6 additions and 8 deletions

View File

@@ -1,7 +1,6 @@
import React, { useEffect, useState } from 'react'
import { Button, Card, message, Modal, PageHeader, Spin } from 'antd'
import { Card, message, Modal, PageHeader, Spin } from 'antd'
import { getSession } from '../api'
import settings from '../settings'
type Props = {
clientId: string
@@ -36,7 +35,8 @@ export const SessionPictures = ({ clientId }: Props) => {
const closeModal = () => setActiveUrl(null)
const host = settings.env === 'jank' ? 'http://192.168.1.107:5000' : ''
const host =
process.env.NODE_ENV === 'development' ? 'http://192.168.1.107:5000' : ''
if (!urls?.length) return null