tangled
alpha
login
or
join now
ansxor.ca
/
dashsky
0
fork
atom
bluesky client without react native baggage written in sveltekit
0
fork
atom
overview
issues
pulls
pipelines
fix login
ansxor.ca
1 week ago
ee3b330a
07152e63
+3
-1
1 changed file
expand all
collapse all
unified
split
src
routes
+layout.svelte
+3
-1
src/routes/+layout.svelte
···
4
4
import favicon from '$lib/assets/favicon.svg';
5
5
import { setUserContext, getUserContext } from '$lib/context';
6
6
import type { AppBskyActorDefs } from '@atcute/bluesky';
7
7
+
import { login } from "$lib/atproto";
7
8
8
9
let { children, data } = $props();
9
10
···
21
22
loggingIn = true;
22
23
try {
23
24
await login(handle.trim());
24
24
-
} catch {
25
25
+
} catch (exception) {
26
26
+
console.error(exception)
25
27
loggingIn = false;
26
28
}
27
29
}