From 9c93cbdc046dea990e6541007d65ab0ef03355ee Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Sat, 24 Jan 2026 21:58:42 +0100 Subject: [PATCH] fix --- README.md | 8 ++++---- src/routes/oauth-client-metadata.json/+server.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 856b5e8..30142f3 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ const config = { ```svelte @@ -141,7 +141,7 @@ LoginModal is a component that renders a login modal, add it for a quick login f Get the user's profile and make requests with the `user.client` object. ```ts -import { user } from '$lib/oauth'; +import { user } from '$lib/atproto'; // make requests with the user.client object // this example needs the getActorLikes rpc permission, set permissions diff --git a/src/routes/oauth-client-metadata.json/+server.ts b/src/routes/oauth-client-metadata.json/+server.ts index a668e20..a4732a6 100644 --- a/src/routes/oauth-client-metadata.json/+server.ts +++ b/src/routes/oauth-client-metadata.json/+server.ts @@ -1,4 +1,4 @@ -import { metadata } from '$lib/oauth'; +import { metadata } from '$lib/atproto'; import { json } from '@sveltejs/kit'; export const prerender = true; -- 2.51.2