Skip to content

Commit

Permalink
Compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maheedhar1998 committed Mar 5, 2020
1 parent f26cf69 commit 884640b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/firebase-backend.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import { Camera, CameraOptions } from '@ionic-native/camera/ngx';
})
export class FirebaseBackendService {
private uid: string;
constructor(uId: string, private camera: Camera) {
private camera: Camera;
constructor(uId: string) {
this.uid = uId;
}

Expand Down

0 comments on commit 884640b

Please sign in to comment.