diff --git a/packages/shell/copy-themes.js b/packages/shell/copy-themes.js index fc68d692e..7e6d691c5 100644 --- a/packages/shell/copy-themes.js +++ b/packages/shell/copy-themes.js @@ -6,6 +6,6 @@ copyFile( join(__dirname, 'src', 'app', 'themes.json'), (err) => { if (err) throw err; - console.log('themes.json copied'); + console.log('themes.json copied'); // eslint-disable-line no-console }, ); diff --git a/packages/vue/src/components/library/ticker-card.vue b/packages/vue/src/components/library/ticker-card.vue index 867125c39..8eeba7b83 100644 --- a/packages/vue/src/components/library/ticker-card.vue +++ b/packages/vue/src/components/library/ticker-card.vue @@ -30,13 +30,12 @@ import { formatPrice } from '@/utils/formatters'; import { Sales, SalesOrOpportunitiesByCategory } from '@/types/analytics'; import { computed, withDefaults } from 'vue'; -import CardAnalytics from '@/components/library/card-analytics.vue'; const props = withDefaults( defineProps<{ icon: string, - tone?: 'warning' | 'info', - title? : string, + tone?: 'warning' | 'info' + title: string, data?: SalesOrOpportunitiesByCategory | Sales | null, total?: string | null, percentage: number, @@ -44,6 +43,7 @@ const props = withDefaults( { data: null, total: null, + tone: undefined, }, );