remove temp variable and log

This commit is contained in:
Mark Kaylor 2022-02-22 11:12:56 +01:00
parent a1e780e125
commit f09a251ee4

View File

@ -32,15 +32,11 @@ const PluginCard = ({ plugin, installedPlugins, useYarn }) => {
const trackUsageRef = useRef(trackUsage);
const isInstalled = installedPlugins.includes(attributes.npmPackageName);
// TODO: Remove this temp test boolean
const useYarn = true;
const commandToCopy = useYarn
? `yarn add ${attributes.npmPackageName}`
: `npm install ${attributes.npmPackageName}`;
// TODO: remove and use
console.log(useYarn);
return (
<Flex
direction="column"