Skip to content

Commit

Permalink
bug : 빌드 에러사항 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
김진영 authored and 김진영 committed Oct 23, 2023
1 parent 9a49574 commit 5a8390a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import styled from 'styled-components';
import Image from 'next/image';
import makchata from '/public/makchata_illust.png';
import exclamationMark from '/public/exclamation_mark.png';
import { useEffect, useRef } from 'react';
import Link from 'next/link';

export default function Home() {
Expand Down Expand Up @@ -44,7 +43,7 @@ export default function Home() {
//게이지 기본 속성값
const RADIUS = 50;
const CIRCUMFERENCE = 2 * Math.PI * RADIUS; // 둘레 길이
let dashoffset = CIRCUMFERENCE * (1 - progress);
const dashoffset = CIRCUMFERENCE * (1 - progress);

//현재 남은 시간 게이지
// const timeGage = progress / 100;
Expand Down

0 comments on commit 5a8390a

Please sign in to comment.