feat: migrate to pnpm (#253)

This commit is contained in:
Ahmed Bouhuolia
2023-10-04 12:17:27 +02:00
committed by GitHub
parent 5df454dd30
commit ee62e3e1c2
211 changed files with 25984 additions and 24350 deletions

View File

@@ -34,10 +34,10 @@ export function Sidebar() {
* @returns {React.JSX}
*/
function SidebarFooterVersion() {
const { MONOREPO_VERSION } = process.env;
const { REACT_APP_VERSION } = process.env;
if (!MONOREPO_VERSION) {
if (!REACT_APP_VERSION) {
return null;
}
return <div class="sidebar__version">v{MONOREPO_VERSION}</div>;
return <div class="sidebar__version">v{REACT_APP_VERSION}</div>;
}

View File

@@ -1,5 +1,4 @@
// @ts-nocheck
import React from 'react';
import { Button, Popover, Menu, Position } from '@blueprintjs/core';
import { Icon } from '@/components';