Skip to content

Commit b02795f

Browse files
committed
chore: fix lint
1 parent 6a92789 commit b02795f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infrastructure/eid-wallet/src/routes/(app)/scan-qr/scanLogic.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export function createScanLogic({
251251
console.log(`⚠️ Using keyId: ${KEY_ID} (NOT ${vault.ename})`);
252252
console.log(`⚠️ Using context: ${signingContext} (NOT "signing")`);
253253
console.log(
254-
`⚠️ This ensures we use the SAME key that was synced to eVault`,
254+
"⚠️ This ensures we use the SAME key that was synced to eVault",
255255
);
256256
console.log("=".repeat(70));
257257

@@ -589,7 +589,7 @@ export function createScanLogic({
589589
console.log(`⚠️ Using keyId: ${KEY_ID} (NOT ${vault.ename})`);
590590
console.log(`⚠️ Using context: ${signingContext} (NOT "signing")`);
591591
console.log(
592-
`⚠️ This ensures we use the SAME key that was synced to eVault`,
592+
"⚠️ This ensures we use the SAME key that was synced to eVault",
593593
);
594594
console.log("=".repeat(70));
595595

platforms/blabsy/src/pages/deeplink-login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { useEffect, useState } from 'react';
44
import { useAuth } from '@lib/context/auth-context';
55

6-
export default function DeeplinkLogin(): JSX.Element {
6+
export default function DeeplinkLogin(): JSX.Element | null {
77
const { signInWithCustomToken } = useAuth();
88
const [isLoading, setIsLoading] = useState(true);
99
const [error, setError] = useState<string | null>(null);

0 commit comments

Comments
 (0)