style: format code with Prettier

This commit fixes the style issues introduced in 6e31b44 according to the output
from Prettier.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-05-04 15:26:36 +00:00 committed by GitHub
parent 6e31b44137
commit cd6fdf3b29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 131 additions and 105 deletions

View file

@ -1,11 +1,8 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
import { phosphorSvelteOptimize } from "phosphor-svelte/preprocessor"
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import { phosphorSvelteOptimize } from "phosphor-svelte/preprocessor";
export default {
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
// for more information about preprocessors
preprocess: [
phosphorSvelteOptimize(),
vitePreprocess()
],
}
preprocess: [phosphorSvelteOptimize(), vitePreprocess()],
};