Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <mollik@trustcerts.de>
  • Loading branch information
Mirko Mollik committed Apr 29, 2024
1 parent f2657fc commit 964695b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions apps/backend/src/settings/settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,8 @@ export class SettingsService {
*/
async setSettings(sub: string, values: UpdateSettingsDto) {
const settings = await this.getSettings(sub);

console.log(settings);
console.log(values);
// Update values
Object.assign(settings, values);
console.log(settings);

// Save settings (update existing or insert new)
return this.keyRepository.save(settings);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export class ScannerComponent implements OnInit, OnDestroy {
* { id: "id", label: "label" }
*/
this.devices = devices;
console.log(this.devices);
//find a device that has a label that contains the word 'back'
const backCamera = devices.find((device) =>
device.label.includes('back')
Expand Down

0 comments on commit 964695b

Please sign in to comment.