Skip to content

Commit

Permalink
fix: 바퀴 수로 기록시 타임라인 차트가 뜨지 않는 현상 수정 (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
hjy0951 authored Aug 29, 2024
1 parent b09db1d commit 2c638e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions constants/visualization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Strokes } from '@/features/main';

export const swims: Array<{ name: keyof Strokes; color: string }> = [
{ name: '총거리', color: '#3B87F4' },
{ name: '총바퀴', color: '#3B87F4' },
{ name: '자유형', color: '#3B87F4' },
{ name: '배영', color: '#F3DD6E' },
{ name: '평영', color: '#88D4B0' },
Expand Down
1 change: 1 addition & 0 deletions features/main/types/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export type MemoryType = 'NORMAL' | 'SINGLE' | 'MULTI';

export interface Strokes {
총거리?: number;
총바퀴?: number;
자유형?: number;
평영?: number;
배영?: number;
Expand Down

0 comments on commit 2c638e7

Please sign in to comment.