Skip to content

Commit 467a57e

Browse files
chore: fix unchanged files with check annotations (#390)
1 parent 1578d97 commit 467a57e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/shell/copy-themes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ copyFile(
66
join(__dirname, 'src', 'app', 'themes.json'),
77
(err) => {
88
if (err) throw err;
9-
console.log('themes.json copied');
9+
console.log('themes.json copied'); // eslint-disable-line no-console
1010
},
1111
);

packages/vue/src/components/library/ticker-card.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@
3030
import { formatPrice } from '@/utils/formatters';
3131
import { Sales, SalesOrOpportunitiesByCategory } from '@/types/analytics';
3232
import { computed, withDefaults } from 'vue';
33-
import CardAnalytics from '@/components/library/card-analytics.vue';
3433
3534
const props = withDefaults(
3635
defineProps<{
3736
icon: string,
38-
tone?: 'warning' | 'info',
39-
title? : string,
37+
tone?: 'warning' | 'info'
38+
title: string,
4039
data?: SalesOrOpportunitiesByCategory | Sales | null,
4140
total?: string | null,
4241
percentage: number,
4342
}>(),
4443
{
4544
data: null,
4645
total: null,
46+
tone: undefined,
4747
},
4848
);
4949

0 commit comments

Comments
 (0)