style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-24 19:40:15 +00:00
parent 9393898e06
commit 455ad82ce7
4 changed files with 12 additions and 13 deletions

View file

@ -13,11 +13,11 @@
const expanded = ref(false);
function toggle (): void {
function toggle(): void {
expanded.value = !expanded.value;
}
function formatDate (timestamp: string | Date): string {
function formatDate(timestamp: string | Date): string {
return new Date(timestamp).toLocaleString();
}