소스 검색

Fix img path in Card Component

Tatiana Inama 6 년 전
부모
커밋
00237f9576
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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,