@@ -369,7 +356,7 @@ const SideMenu = ({ height, setGetConversationId }: { height?: string, setGetCon
-
+ */}
);
};
diff --git a/copilot-ui/src/components/Start.tsx b/copilot-ui/src/components/Start.tsx
index 74c4f441..7802f85b 100644
--- a/copilot-ui/src/components/Start.tsx
+++ b/copilot-ui/src/components/Start.tsx
@@ -13,7 +13,8 @@ const questions =
{title: 'Can I load data with pyTG?'},
{title: 'Write a short python snippet to run a loading job'},
]
- : [
+ : localStorage.getItem('selectedGraph') === 'Transaction_Fraud' ?
+ [
{title: 'How many transactions are there?'},
{title: 'Tell me about transaction fraud.'},
{title: 'Describe flow of one transaction.'},
@@ -23,7 +24,8 @@ const questions =
// { title: "What is William Torres' ID?" },
// { title: "What's his email?" },
// {title:"How do I get a count of vertices in Python?"}
- ];
+ ]
+ : [];
interface Start {
props: any;
diff --git a/copilot-ui/src/components/UserAvatar.tsx b/copilot-ui/src/components/UserAvatar.tsx
index d8bf831f..c8b90677 100644
--- a/copilot-ui/src/components/UserAvatar.tsx
+++ b/copilot-ui/src/components/UserAvatar.tsx
@@ -9,7 +9,7 @@ export const UserAvatar: FC