Skip to content

Commit

Permalink
Chore: 2차 충돌해결
Browse files Browse the repository at this point in the history
  • Loading branch information
LeHiHo committed Jan 3, 2024
1 parent d3ba278 commit 9b419e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/DetailSectionBottom/DetailReviewStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ const DetailReviewStats = () => {
{reviewStats && reviewStats.length > 0 ? (
reviewStats.slice(0, showAll ? reviewStats.length : 3).map((data) => (
<div key={uuidv4()} className="mb-2 h-10 w-full">
<div className="relative h-10 w-[335px] rounded-lg bg-gray1">
<div className="relative h-10 w-full rounded-lg bg-gray1">
<div
className="absolute top-0 h-10 rounded-lg"
style={{
width: `${calculateWidth(data.keywordCount)}%`,
backgroundColor: getColor(data.keywordCount),
}}
/>
<div className="absolute left-[14.5px] top-[12.23px] flex items-center justify-start gap-[108px]">
<div className="absolute left-[14.5px] top-[12.23px] flex items-center justify-start gap-[145px]">
<div className="flex items-start justify-start gap-1.5">
<p className="w-4">{getEmoji(data.content)}</p>
<p className="h-[15.55px] w-[166px] font-bold text-gray6">
Expand Down
2 changes: 1 addition & 1 deletion src/components/DetailSectionBottom/DetailSectionBottom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function DetailSectionBottom() {
return (
<>
<DetailReviewStats />
<DetailReview />
{/* <DetailReview /> */}
</>
);
}
2 changes: 1 addition & 1 deletion src/components/DetailSectionTop/DetailToursMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function DetailToursMap({ mapData }: DetailToursMapProps) {
const [isMapVisible, setIsMapVisible] = useState<boolean>(false);

const MapStyle = {
width: '325px',
width: '372px',
height: isMapVisible ? 0 : '150px',
marginTop: isMapVisible ? '15px' : '15px',
marginBottom: isMapVisible ? '15px' : '15px',
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import './index.css';

if (import.meta.env.DEV) {
const { worker } = await import('./mocks/browser.ts');
await worker.start();
await worker.stop();
}

ReactDOM.createRoot(document.getElementById('root')!).render(<App />);

0 comments on commit 9b419e0

Please sign in to comment.