6 lines
191 B
TypeScript
6 lines
191 B
TypeScript
import { trails_show } from "$lib/stores/trail_store";
|
|
import type { Load } from "@sveltejs/kit";
|
|
|
|
export const load: Load = async ({ params }) => {
|
|
await trails_show(params.id!, true)
|
|
}; |