From be43fadae0ad7942276cafce5ceb6b30c0d3c059 Mon Sep 17 00:00:00 2001
From: Tony Salomone <dadmobile@gmail.com>
Date: Wed, 3 Jul 2024 14:49:55 -0400
Subject: [PATCH] Fix plugin scripts page message to not reference experiment.

---
 src/renderer/components/Plugins/LocalPlugins.tsx | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/renderer/components/Plugins/LocalPlugins.tsx b/src/renderer/components/Plugins/LocalPlugins.tsx
index 7f9f9175..58f91bc0 100644
--- a/src/renderer/components/Plugins/LocalPlugins.tsx
+++ b/src/renderer/components/Plugins/LocalPlugins.tsx
@@ -6,12 +6,14 @@ import {
   Button,
   FormControl,
   Grid,
-  Input,
   LinearProgress,
   Sheet,
   Typography,
 } from '@mui/joy';
-import { FolderOpenIcon, PlusIcon } from 'lucide-react';
+import {
+  PlusIcon,
+  StoreIcon,
+} from 'lucide-react';
 import PluginCard from './PluginCard';
 
 import * as chatAPI from '../../lib/transformerlab-api-sdk';
@@ -46,9 +48,8 @@ export default function LocalPlugins({ experimentInfo }) {
         experimentInfo={experimentInfo}
       />
       <Typography level="body-md">
-        Below are plugin scripts installed to project{' '}
-        <b>{experimentInfo?.name}</b>. Additional scripts can be added from the
-        Script Store{' '}
+        Below is a list of currently installed and available plugins. Additional scripts can be added in the
+        {' '} <StoreIcon /> Plugin Script Store
       </Typography>
       <Sheet
         variant="soft"
-- 
GitLab