Skip to content

Commit 348cc74

Browse files
committed
fix: use lit generated secret
1 parent c555d4f commit 348cc74

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/linking/linking.controller.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export class LinkingController {
2828
const { chainId, anyJwt, siweJwt } = linkIdentitiesDto
2929
const siweJwtPayload = await this.authService.validateToken(siweJwt)
3030
const anyJwtPayload = await this.authService.validateToken(anyJwt)
31-
const secret = 'secret'
32-
await this.litService.encrypt(
31+
const secret = await this.litService.encrypt(
3332
chainId,
3433
{
3534
id: anyJwtPayload.sub,

0 commit comments

Comments
 (0)