Skip to content

Commit

Permalink
refactor: 혼잡도 그래프 ratio 서버 변경에 맞춰 값 변경한다 (#745)
Browse files Browse the repository at this point in the history
- ex) 20 → 0.2

[#744]
  • Loading branch information
feb-dain authored Sep 15, 2023
1 parent e8ee531 commit 0ebdc55
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,31 +49,31 @@ const Help = () => {
</TableRow>
<TableRow>
<td>
<Bar ratio={20} hour="02" align="column" />
<Bar ratio={0.2} hour="02" align="column" />
</td>
<TableData>20%</TableData>
</TableRow>
<TableRow>
<td>
<Bar ratio={40} hour="03" align="column" />
<Bar ratio={0.4} hour="03" align="column" />
</td>
<TableData>40%</TableData>
</TableRow>
<TableRow>
<td>
<Bar ratio={60} hour="04" align="column" />
<Bar ratio={0.6} hour="04" align="column" />
</td>
<TableData>60%</TableData>
</TableRow>
<TableRow>
<td>
<Bar ratio={80} hour="05" align="column" />
<Bar ratio={0.8} hour="05" align="column" />
</td>
<TableData>80%</TableData>
</TableRow>
<TableRow>
<td>
<Bar ratio={100} hour="06" align="column" />
<Bar ratio={1} hour="06" align="column" />
</td>
<TableData>100%</TableData>
</TableRow>
Expand Down

0 comments on commit 0ebdc55

Please sign in to comment.