Skip to content

Commit

Permalink
default
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuzuri247 committed Dec 22, 2024
1 parent ca5f579 commit 4272005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/api/teams/create-team/route.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import dbConnect from "../../../../lib/dbConnect";
import { teamSchema } from "../../../../model/Schema/teamSchema";
import { TeamModel } from "../../../../model/Team";
import { UserModel } from "../../../../model/User";
import UserModel from "../../../../model/User";

export async function POST(request) {
await dbConnect();
Expand Down
2 changes: 1 addition & 1 deletion app/api/teams/send-request/route.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import dbConnect from "../../../../lib/dbConnect";
import { TeamModel } from "../../../../model/Team";
import { UserModel } from "../../../../model/User";
import UserModel from "../../../../model/User";

export async function POST(req) {
await dbConnect();
Expand Down

0 comments on commit 4272005

Please sign in to comment.