tangled
alpha
login
or
join now
samanthanguyen.me
/
drifting-starlight
1
fork
atom
a homebrewed DnD campaign based in the Honkai: Star Rail universe
hsr
honkaistarrail
dnd
1
fork
atom
overview
issues
7
pulls
pipelines
lint: fix linting errors
samanthanguyen.me
2 months ago
382a9eda
5e173f07
0/4
codeqa-fmt.yml
failed
2s
codeqa-lint.yml
failed
2s
deploy-preview.yml
failed
2s
test.yml
failed
2s
+3
-3
3 changed files
expand all
collapse all
unified
split
app
src
routes
combat
+page.server.ts
species
[page=species]
+page.server.ts
new
+page.server.ts
+1
-1
app/src/routes/combat/+page.server.ts
···
51
51
]
52
52
53
53
// oxlint-disable-next-line eslint(no-unused-vars)
54
54
-
export const load: PageServerLoad = async ({}) => {
54
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
52
-
export const load: PageServerLoad = async ({}) => {
52
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
5
-
export const load: PageServerLoad = async ({}) => {
5
5
+
export const load: PageServerLoad = async () => {
6
6
return {
7
7
meta: {
8
8
pageTitle: pageTitle('Register a new species'),