Skip to content

Commit

Permalink
tests written
Browse files Browse the repository at this point in the history
  • Loading branch information
pks03 committed Feb 26, 2024
2 parents 424d43b + 1c645b8 commit 17cacc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions frontend/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import { title } from "@/components/primitives";
import Post from "@/components/Post";
import getGoogleOAuthUrl from "@/utils/getGoogleOAuthUrl";
import { Button } from "@nextui-org/button";
import axios from "axios";

axios.defaults.withCredentials = true;

export default function Home() {
const posts = [
Expand Down
1 change: 0 additions & 1 deletion frontend/app/user/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export default function CreateUser() {
email: sessionStorage.getItem("email"),
phoneNumber: data.phoneNumber
}, {
withCredentials: true,
headers: {
'Content-Type': 'application/json'
},
Expand Down

0 comments on commit 17cacc3

Please sign in to comment.