diff --git a/src/renderer/components/Plugins/PluginCard.tsx b/src/renderer/components/Plugins/PluginCard.tsx index e5de9ccc1f71b4a0f3805163b5e19c319854f3ef..740d1a853389b68737f0c8d48922b262dfa67903 100644 --- a/src/renderer/components/Plugins/PluginCard.tsx +++ b/src/renderer/components/Plugins/PluginCard.tsx @@ -72,22 +72,16 @@ export default function PluginCard({ <Chip>{type}</Chip> </b> </Typography> - <Typography level="body-md" fontSize="sm" sx={{ mt: 0.5, mb: 0.5 }}> + <Typography level="body-md" fontSize="sm" sx={{ mt: 0.0, mb: 1 }}> {/* {plugin.uniqueId} */} {plugin?.gallery_version ? ( plugin?.version != plugin?.gallery_version ? ( <Chip color="danger">v{plugin.version} Needs Upgrade</Chip> ) : ( - <> - <Chip color="success" variant="outlined"> - v{plugin.version} - </Chip> - </> + <>v{plugin.version}</> ) ) : ( - <Chip color="warning" variant="outlined"> - v{plugin.version} - </Chip> + <>v{plugin.version}</> )} </Typography>