Skip to content

Commit e77a331

Browse files
committed
Fix Type 'NonSharedBuffer' is not assignable to type 'string'
1 parent 5f59ea0 commit e77a331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/views/Config.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@
553553
<x-button
554554
@click="
555555
logTitle = 'Winboat log (winboat.log)';
556-
logContent = fs.readFileSync(path.join(WINBOAT_DIR, 'winboat.log'));
556+
logContent = fs.readFileSync(path.join(WINBOAT_DIR, 'winboat.log'), 'utf-8');
557557
logDialog!.showModal();
558558
"
559559
>

0 commit comments

Comments
 (0)