Skip to content

Commit

Permalink
chore: remove console logs used for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ydennisy committed Apr 21, 2024
1 parent 47e31c2 commit d13077f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/components/SignUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const signUp = async (data: { email: string }) => {
};
const login = async (provider: 'github' | 'google' | 'twitter') => {
console.log(`${appBase}/confirm`);
const { error } = await client.auth.signInWithOAuth({
provider,
options: {
Expand Down
1 change: 0 additions & 1 deletion frontend/pages/confirm.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script setup lang="ts">
const redirectToPreviousPath = async () => {
const redirectPath = useCookie('sb-redirect-path');
console.log('I am trying to redirect!!!', redirectPath);
if (!redirectPath) {
await navigateTo('/');
}
Expand Down

0 comments on commit d13077f

Please sign in to comment.