diff --git a/apps/expo/src/components/SignInWithOAuth.tsx b/apps/expo/src/components/SignInWithOAuth.tsx
deleted file mode 100644
index bf8718f..0000000
--- a/apps/expo/src/components/SignInWithOAuth.tsx
+++ /dev/null
@@ -1,38 +0,0 @@
-import { useOAuth } from "@clerk/clerk-expo";
-import React from "react";
-import { Button, View } from "react-native";
-import { useWarmUpBrowser } from "../hooks/useWarmUpBrowser";
-
-const SignInWithOAuth = () => {
- useWarmUpBrowser();
-
- const { startOAuthFlow } = useOAuth({ strategy: "oauth_discord" });
-
- const handleSignInWithDiscordPress = React.useCallback(async () => {
- try {
- const { createdSessionId, signIn, signUp, setActive } =
- await startOAuthFlow();
- if (createdSessionId) {
- setActive?.({ session: createdSessionId });
- } else {
- // Modify this code to use signIn or signUp to set this missing requirements you set in your dashboard.
- throw new Error("There are unmet requirements, modifiy this else to handle them")
-
- }
- } catch (err) {
- console.log(JSON.stringify(err, null, 2));
- console.log("error signing in", err);
- }
- }, []);
-
- return (
-
-
-
- );
-}
-
-export default SignInWithOAuth;
diff --git a/apps/expo/src/screens/signin.tsx b/apps/expo/src/screens/signin.tsx
deleted file mode 100644
index af2e9c2..0000000
--- a/apps/expo/src/screens/signin.tsx
+++ /dev/null
@@ -1,15 +0,0 @@
-import React from "react";
-
-import { View, SafeAreaView } from "react-native";
-
-import SignInWithOAuth from "../components/SignInWithOAuth";
-
-export const SignInSignUpScreen = () => {
- return (
-
-
-
-
-
- );
-};