Skip to content

Commit

Permalink
fix: add location plugin to slangroom initialization (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino authored Oct 9, 2024
1 parent 3a659ba commit 6229499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/[[lang]]/(protected)/[id]/verify/_lib/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { log } from '$lib/log';
import { saveVerifiedSid } from '$lib/preferences/verifiedSid';
import { goto } from '$app/navigation';

const slangroom = new Slangroom(http, helpers, zencode);
const slangroom = new Slangroom(http, helpers, zencode, location);
export const jwsToIdSuccess = 'Signature_verification_successful' as const;
export const jwsToIdFailure = 'Signature_verification_error' as const;
export type jwsToIdResult = typeof jwsToIdSuccess | typeof jwsToIdFailure;
Expand Down

0 comments on commit 6229499

Please sign in to comment.