Skip to content

Commit

Permalink
fix(photos): fix build error due to not used const
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-gs committed Jun 18, 2024
1 parent 2c74800 commit 329aa83
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/drive/services/usage.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ async function getUsageDetails(): Promise<UsageDetailsProps> {

let drive = 0;
let backups = 0;
let photos = 0;

try {
const { drive: storageDrive, backups: storageBackups } = await storageClient.spaceUsage();
Expand All @@ -32,7 +31,7 @@ async function getUsageDetails(): Promise<UsageDetailsProps> {

return {
drive,
photos,
photos: 0,
backups,
};
}
Expand Down

0 comments on commit 329aa83

Please sign in to comment.