Consistent code formatting

This commit is contained in:
Sean Morley
2024-04-02 22:02:20 +00:00
parent 302a59c86d
commit 83cca15a8f
35 changed files with 6716 additions and 6511 deletions

View File

@@ -1,4 +1,3 @@
import { onMount } from "svelte";
import { writable } from "svelte/store";
export const visitCount = writable(0);

View File

@@ -1,6 +1,6 @@
export interface Adventure {
id: number
name: string;
location: string;
created:string
}
id: number;
name: string;
location: string;
created: string;
}