Skip to content

Commit 30baeb2

Browse files
committed
Remove confusing comments
1 parent b4a6937 commit 30baeb2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

assets/js/dashboard/stats/graph/main-graph.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ type MainGraphResponse = {
4949
}
5050
}
5151
type GraphDatum = {
52-
value: number | null // null when graph is not defined
53-
timeLabel: string | null // null when there's no label
54-
comparisonValue?: number | null // null when comparison is not defined
55-
comparisonTimeLabel?: string | null // null when comparison is not defined
56-
change?: number | null // null when comparison is not defined
52+
value: number | null
53+
timeLabel: string | null
54+
comparisonValue?: number | null
55+
comparisonTimeLabel?: string | null
56+
change?: number | null
5757
}
5858

5959
type XPos = number

0 commit comments

Comments
 (0)