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
import favicon from '$lib/assets/favicon.svg';
5
import { setUserContext, getUserContext } from '$lib/context';
6
import type { AppBskyActorDefs } from '@atcute/bluesky';
0
7
8
let { children, data } = $props();
9
···
21
loggingIn = true;
22
try {
23
await login(handle.trim());
24
-
} catch {
0
25
loggingIn = false;
26
}
27
}
···
4
import favicon from '$lib/assets/favicon.svg';
5
import { setUserContext, getUserContext } from '$lib/context';
6
import type { AppBskyActorDefs } from '@atcute/bluesky';
7
+
import { login } from "$lib/atproto";
8
9
let { children, data } = $props();
10
···
22
loggingIn = true;
23
try {
24
await login(handle.trim());
25
+
} catch (exception) {
26
+
console.error(exception)
27
loggingIn = false;
28
}
29
}