grain.social is a photo sharing platform built on atproto. grain.social
atproto photography appview
57
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use @sveltejs/kit import for RequestHandler type

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -2
+1 -1
app/routes/.well-known/did.json/+server.ts
··· 1 - import type { RequestHandler } from "./$types"; 1 + import type { RequestHandler } from "@sveltejs/kit"; 2 2 3 3 const DID_DOCUMENT = { 4 4 "@context": ["https://www.w3.org/ns/did/v1"],
+1 -1
app/routes/embed/gallery/[did]/[rkey]/+server.ts
··· 1 - import type { RequestHandler } from "./$types"; 1 + import type { RequestHandler } from "@sveltejs/kit"; 2 2 3 3 export const GET: RequestHandler = async ({ params, url }) => { 4 4 const { did, rkey } = params;