Skip to content

Commit 5035591

Browse files
committed
fixed lint problem
1 parent e07353c commit 5035591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/components/CalendarChart.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import { defineComponent } from 'vue';
99
import { CalendarHeatmap } from 'vue3-calendar-heatmap'
1010
import { authHeader, handleResponse } from '@/utils/authentication';
11-
let data: Array<{ date: Date; count: number; }> = [];
11+
const data: Array<{ date: Date; count: number; }> = [];
1212
1313
export default defineComponent({
1414
components: {

0 commit comments

Comments
 (0)