Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit d77f35a

Browse files
committed
Add rule for ts-ignore
1 parent 2808fc3 commit d77f35a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/expo/src/components/SignInWithOAuth.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ const SignInWithOAuth = () => {
2929
returnUrl: redirectUrl,
3030
});
3131

32-
//@ts-ignore
32+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
33+
// @ts-ignore
3334
const { type, params } = result || {};
34-
// Check all the possible AuthSession results
35-
// https://docs.expo.dev/versions/latest/sdk/auth-session/#returns-7
3635
console.log;
3736
if (type !== "success") {
3837
throw "Something went wrong during the OAuth flow. Try again.";

0 commit comments

Comments
 (0)