a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr honkaistarrail dnd

lint: fix linting errors

authored by samanthanguyen.me and committed by tangled.org 927d0277 774ee6a4

+3 -3
+1 -1
app/src/routes/combat/+page.server.ts
··· 51 51 ] 52 52 53 53 // oxlint-disable-next-line eslint(no-unused-vars) 54 - export const load: PageServerLoad = async ({}) => { 54 + export const load: PageServerLoad = async () => { 55 55 return { 56 56 meta: { 57 57 pageTitle: pageTitle('Combat'),
+1 -1
app/src/routes/species/[page=species]/+page.server.ts
··· 49 49 }, 50 50 } 51 51 52 - export const load: PageServerLoad = async ({}) => { 52 + export const load: PageServerLoad = async () => { 53 53 return { 54 54 species: species, 55 55 }
+1 -1
app/src/routes/species/new/+page.server.ts
··· 2 2 import type { PageServerLoad } from './$types' 3 3 import { pageTitle } from '$lib/utils' 4 4 5 - export const load: PageServerLoad = async ({}) => { 5 + export const load: PageServerLoad = async () => { 6 6 return { 7 7 meta: { 8 8 pageTitle: pageTitle('Register a new species'),