Skip to content

Commit

Permalink
⚙️ chore: console.log 제거 및 사용하지 않는 id 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
dongree committed Nov 7, 2024
1 parent 3c120a0 commit 3388d71
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion FE/src/components/StockIndex/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export function Chart({ name }: StockIndexChartProps) {
<p className='font-semibold text-juga-blue-40'>-31.55(-1.2%)</p>
</div>
<canvas
id='lineChart'
ref={canvasRef}
width={600}
height={300}
Expand Down
2 changes: 0 additions & 2 deletions FE/src/utils/chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ export const drawChart = (ctx: CanvasRenderingContext2D, data: number[]) => {
chartHeight -
(chartHeight * (point - yMin)) / (yMax - yMin);

console.log(point);

if (i === 0) {
ctx.moveTo(x, y);
} else {
Expand Down

0 comments on commit 3388d71

Please sign in to comment.