Minor fixes
This commit is contained in:
@@ -60,9 +60,9 @@ import 'react-toastify/dist/ReactToastify.css';
|
||||
import Drift from "react-driftjs";
|
||||
|
||||
import { AppContext } from './context/ContextApi.jsx';
|
||||
import Navbar from "./components/Navbar.jsx";
|
||||
import Workflows2 from "./views/Workflows2.jsx";
|
||||
import AppExplorer from "./views/AppExplorer.jsx";
|
||||
import Navbar from "./views/Navbar.jsx";
|
||||
|
||||
// Production - backend proxy forwarding in nginx
|
||||
var globalUrl = window.location.origin;
|
||||
|
||||
@@ -864,10 +864,14 @@ const LicencePopup = (props) => {
|
||||
return
|
||||
}
|
||||
|
||||
const priceItem = window.location.origin === "https://shuffler.io" ?
|
||||
shuffleVariant === 0 ? "app_executions" : "cores"
|
||||
:
|
||||
shuffleVariant === 0 ? "price_1PZPSSEJjT17t98NLJoTMYja" : "price_1PZPQuEJjT17t98N3yORUtd9"
|
||||
const priceItem =
|
||||
window.location.origin === "https://shuffler.io/" || "https://sandbox.shuffler.io/"
|
||||
? shuffleVariant === 0
|
||||
? "app_executions"
|
||||
: "cores"
|
||||
: shuffleVariant === 0
|
||||
? "price_1PZPSSEJjT17t98NLJoTMYja"
|
||||
: "price_1PZPQuEJjT17t98N3yORUtd9";
|
||||
|
||||
const successUrl = `${window.location.origin}/admin?admin_tab=billingstats&payment=success`
|
||||
const failUrl = `${window.location.origin}/admin?admin_tab=billingstats&payment=failure`
|
||||
|
||||
@@ -680,8 +680,8 @@ const LoginPage = props => {
|
||||
<form onSubmit={onSubmit} style={{ margin: 15, width: isMobile ? "100%" : "360px", width: "max-content", overflow: "hidden", textAlign: "center", }}>
|
||||
<img
|
||||
style={{
|
||||
height: isMobile ? 44 : 75,
|
||||
width: isMobile ? 44 : 75,
|
||||
height: isMobile ? 44 : 60,
|
||||
width: isMobile ? 44 : 60,
|
||||
paddingBottom: isMobile ? null : 40
|
||||
}}
|
||||
src="images/logos/orange_logo.svg"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user