diff options
Diffstat (limited to 'frontend/src/app/_data')
-rw-r--r-- | frontend/src/app/_data/ProfilePictures.ts | 8 | ||||
-rw-r--r-- | frontend/src/app/_data/User.ts | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/frontend/src/app/_data/ProfilePictures.ts b/frontend/src/app/_data/ProfilePictures.ts index 42688b4d..217810d9 100644 --- a/frontend/src/app/_data/ProfilePictures.ts +++ b/frontend/src/app/_data/ProfilePictures.ts @@ -59,13 +59,5 @@ export const PICTURES = [ { photoId: 14, path: "/assets/profilePictures/14.png" - }, - { - photoId: 15, - path: "/assets/profilePictures/15.png" - }, - { - photoId: 16, - path: "/assets/profilePictures/16.png" } ]
\ No newline at end of file diff --git a/frontend/src/app/_data/User.ts b/frontend/src/app/_data/User.ts index 58383d38..be42ed0a 100644 --- a/frontend/src/app/_data/User.ts +++ b/frontend/src/app/_data/User.ts @@ -1,5 +1,5 @@ export default class User { - _id: string = ''; + _id?: string = ''; constructor( public username: string = '', public email: string = '', |