Skip to content

Commit

Permalink
Merge pull request #259 from softeerbootcamp-2nd/hotfix/image-fetch-e…
Browse files Browse the repository at this point in the history
…rror

[hotfix] debugging
  • Loading branch information
jijiseong authored Aug 15, 2023
2 parents d68f29d + d725cac commit c865492
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ function App() {
}

export default App;

4 changes: 2 additions & 2 deletions frontend/src/containers/TrimPage/TrimBannerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { useCallback, useContext, useEffect, useRef, useState } from 'react';
import { css, styled } from 'styled-components';
import { BodyKrMedium3, BodyKrRegular5, HeadingKrRegular2 } from '../../styles/typefaces';
import { flexCenterCss } from '../../utils/commonStyle';
import { IMG_URL } from '../../utils/apis';
import { IMG_URL, TRIM_API } from '../../utils/apis';
import CenterWrapper from '../../components/layout/CenterWrapper';
import Banner from '../../components/common/banner/Banner';
import HmgTag from '../../components/common/hmgTag/HmgTag';
Expand All @@ -21,7 +21,7 @@ export default function TrimBannerContainer() {
const imageUrls = useRef<string[]>([]);
const [imagesLoading, setImagesLoading] = useState(true);

console.log(imageUrls);
console.log(IMG_URL, TRIM_API);
const handleSelectImg = useCallback(
(idx: number) => {
setSelectedImgIdx(idx);
Expand Down

0 comments on commit c865492

Please sign in to comment.