diff --git a/frontend/src/views/Dashboard.jsx b/frontend/src/views/Dashboard.jsx
index 6fff22af..fad0d5e4 100644
--- a/frontend/src/views/Dashboard.jsx
+++ b/frontend/src/views/Dashboard.jsx
@@ -776,8 +776,6 @@ const UsecaseListComponent = ({keys, isCloud, globalUrl, frameworkData, isLogged
var baseTypeInfo = subcase.type !== undefined ? subcase.type : "communication"
if (frameworkData !== undefined && frameworkData !== null) {
if (frameworkData[baseTypeInfo] !== undefined && frameworkData[baseTypeInfo] !== null && subdata.app !== undefined && subdata.app !== null) {
- console.log("Name: ", frameworkData[baseTypeInfo], baseTypeInfo)
- console.log("Name2: ", subdata.app)
if (frameworkData[baseTypeInfo].name !== undefined && frameworkData[baseTypeInfo].name.toLowerCase().replaceAll("_", " ") === subdata.app.toLowerCase().replaceAll("_", " ")) {
highlight = true
}
diff --git a/frontend/src/views/GettingStarted.jsx b/frontend/src/views/GettingStarted.jsx
index 392afce7..880b56b2 100644
--- a/frontend/src/views/GettingStarted.jsx
+++ b/frontend/src/views/GettingStarted.jsx
@@ -2373,6 +2373,12 @@ const GettingStarted = (props) => {
+
+
+ Need assistance? Ask our support team (it's free!).
+
+

+
{/*
diff --git a/frontend/src/views/SettingsPage.jsx b/frontend/src/views/SettingsPage.jsx
index 1bcd2344..2703ac94 100644
--- a/frontend/src/views/SettingsPage.jsx
+++ b/frontend/src/views/SettingsPage.jsx
@@ -1,5 +1,6 @@
import React, { useState, useEffect } from "react";
+import { useNavigate, Link } from "react-router-dom";
import {
Grid,
Typography,
@@ -8,7 +9,6 @@ import {
Divider,
TextField,
} from "@material-ui/core";
-import { Link } from "react-router-dom";
import { useAlert } from "react-alert";
import { useTheme } from "@material-ui/core/styles";
@@ -18,6 +18,7 @@ const Settings = (props) => {
const { globalUrl, isLoaded, userdata, setUserData } = props;
const theme = useTheme();
const alert = useAlert();
+ let navigate = useNavigate();
const [username, setUsername] = useState("");
const [firstname, setFirstname] = useState("");
@@ -414,7 +415,15 @@ const Settings = (props) => {
src={imageData}
alt="Click to upload an image (174x174)"
id="logo"
+ onClick={() => {
+ if (imageData !== theme.palette.defaultImage) {
+ navigate(`/creators/${userdata.public_username}`)
+ } else {
+ navigate(`/creators`)
+ }
+ }}
style={{
+ cursor: "pointer",
maxWidth: 100,
maxHeight: 100,
minWidth: 100,
@@ -810,7 +819,7 @@ const Settings = (props) => {
) : null}
- {userdata !== undefined &&
+ {/*userdata !== undefined &&
userdata.eth_info !== undefined &&
userdata.eth_info.account !== undefined &&
userdata.eth_info.account.length > 0 ? (
@@ -868,7 +877,7 @@ const Settings = (props) => {
>
Authenticate Metamask Wallet
- )}
+ )*/}
diff --git a/frontend/src/views/Workflows.jsx b/frontend/src/views/Workflows.jsx
index 658f2e87..b8f2c62a 100644
--- a/frontend/src/views/Workflows.jsx
+++ b/frontend/src/views/Workflows.jsx
@@ -1075,6 +1075,7 @@ const Workflows = (props) => {
minWidth: isMobile ? "100%" : 1024,
maxWidth: isMobile ? "100%" : 1024,
margin: "auto",
+ paddingBottom: 200,
};
const emptyWorkflowStyle = {
@@ -1145,9 +1146,11 @@ const Workflows = (props) => {
for (var key in data.triggers) {
const trigger = data.triggers[key];
if (trigger.app_name === "Shuffle Workflow") {
- if (trigger.parameters.length > 2) {
- trigger.parameters[2].value = "";
- }
+ if (trigger.parameters !== null && trigger.parameters !== undefined) {
+ if (trigger.parameters.length > 2) {
+ trigger.parameters[2].value = "";
+ }
+ }
}
if (trigger.status === "running") {
@@ -3500,7 +3503,13 @@ const Workflows = (props) => {
{exportVerifyModal}
{publishModal}
{workflowDownloadModalOpen}
-
+ {/*
+
+ Need assistance? Ask our support team (it's free!).
+
+

+
*/}
+
) : (