Skip to content

Commit e0833bc

Browse files
committed
typo
1 parent 0af6b6c commit e0833bc

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

app.vue

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
<template>
2-
<NuxtPwaManifest />
3-
<div class="min-h-screen bg-gray-950">
4-
<NuxtLayout v-if="serialStore.hasSerial" class="h-full">
5-
<NuxtPage />
6-
</NuxtLayout>
7-
<div v-else>
8-
No WebSerial
2+
<div>
3+
<NuxtPwaManifest />
4+
<div class="min-h-screen bg-gray-950">
5+
<NuxtLayout v-if="serialStore.hasSerial" class="h-full">
6+
<NuxtPage />
7+
</NuxtLayout>
8+
<div v-else>
9+
No WebSerial
10+
</div>
11+
<UNotifications />
912
</div>
10-
<UNotifications />
1113
</div>
1214
</template>
1315
<script setup>

src/communication/four_way.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type { McuSettings } from '../eeprom';
21
import Flash from '../flash';
32
import Mcu, { type McuInfo } from '../mcu';
43
import CommandQueue from '~/src/communication/commands.queue';
@@ -58,9 +57,9 @@ export class FourWay {
5857
public commandCount = 0;
5958

6059
constructor (
61-
private log: ((s: string) => void),
62-
private logError: ((s: string) => void),
63-
private logWarning: ((s: string) => void)
60+
private readonly log: ((s: string) => void),
61+
private readonly logError: ((s: string) => void),
62+
private readonly logWarning: ((s: string) => void)
6463
) {
6564
}
6665

0 commit comments

Comments
 (0)