Explorar el Código

Fix img path in Card Component

Tatiana Inama hace 6 años
padre
commit
00237f9576
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      recipes/src/components/Card/index.tsx

+ 1 - 1
recipes/src/components/Card/index.tsx

@@ -12,7 +12,7 @@ import '@material/react-button/dist/button.min.css';
 
 import './styles.scss';
 import sample_img from "./sample.png";
-const API: string = process.env.REACT_APP_API || '';
+const API: string = process.env.REACT_APP_IMG || '';
 
 type CBKCardProps = {
   withImg?: boolean,