Skip to content

Commit 2542768

Browse files
committed
wip
1 parent c1e103b commit 2542768

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/email/Header.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const { email, size } = defineProps<{
1010
size?: number
1111
}>()
1212
13-
const emit = defineEmits<{
13+
defineEmits<{
1414
(e: 'delete'): void
1515
}>()
1616

src/views/Home.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const copyToClipboard = (text: string) => {
142142
<div class="bg-gray-50/80 px-4 py-3 border-b border-gray-100">
143143
<div class="flex gap-4 overflow-x-auto no-scrollbar">
144144
<button
145-
v-for="(config, key) in configs"
145+
v-for="(_config, key) in configs"
146146
:key="key"
147147
@click="activeTab = key"
148148
class="text-sm transition-colors whitespace-nowrap capitalize"

0 commit comments

Comments
 (0)