Skip to content

Commit 7bc4a5f

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)