clerk-sveltekit icon indicating copy to clipboard operation
clerk-sveltekit copied to clipboard

Clerk adapter for SvelteKit

Results 21 clerk-sveltekit issues
Sort by recently updated
recently updated
newest added

Hi folks, thanks for creating this wonderful lib. I just wanted to contribute with something that I've been struggling the last couple of days. So the way that I'm using...

This PR upgrades the package to [Clerk Core 2](https://clerk.com/changelog/2024-04-19) with refreshed UI components and removes the `@clerk/clerk-js` dependency in favor of hot loading the clerk-js script which greatly reduces app...

Simple example: ```svelte import ClerkLoaded from 'clerk-sveltekit/client/ClerkLoaded.svelte'; import Clerk from '@clerk/clerk-js'; let clerk: Clerk | null; $: { if (clerk?.user != null) { // Do something interesting } } //...

It seems that `protectedRoutes` does not seem to work with routes that contain hyphens. For example, this seems to protect the `/create` route: ```ts export const handle: Handle = sequence(...

I see there's SignedIn let:user. Is there something equivalent to get the currently active organization? Callbacks? Events? Exposed variables?

I have set the components appearance in the client.hooks.ts but this means that whenever I change the theme on the page it doesn't reflect on the clerk ui components and...

Hi Mark -- first, thank you so much for creating and sharing this project. I have a question re getting user metadata (https://clerk.com/docs/users/metadata. I was expecting it would be a...

Any idea on how we can work with the [official localization](https://github.com/clerk/javascript/tree/main/packages/localizations) package and Sveltekit?

Hey, I have a query regarding token fetching. I have a jwt template token with a life of 60 seconds, is there a way for it to automatically refresh, or...

Hi guys, First thanks for the job done in creating a clerk integration for sveltekit. Wonder why the makers of clerk ignored sveltekit. Anyways, I get this warning when using...