Skip to content

Commit

Permalink
fix: remove unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pociej committed Apr 12, 2024
1 parent 6cf3d24 commit e9a21e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/src/services/user/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const schema = new mongoose.Schema<IUser>(
required: true,
index: { unique: true },
},
currentAllocation: {
type: Number,
currentAllocationId: {
type: String,
required: true,
},
deposits: [
Expand Down
1 change: 0 additions & 1 deletion backend/src/services/user/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { t } from "i18next";
import { DeleteResult } from "mongodb";

type UserIdType = string;
Expand Down

0 comments on commit e9a21e9

Please sign in to comment.