This commit is contained in:
Alex Tran
2023-11-28 23:10:43 -06:00
parent 5da036ba00
commit 78932f3483
13 changed files with 22 additions and 33 deletions
+1 -4
View File
@@ -73,10 +73,7 @@ export class AssetStore {
assets: AssetResponseDto[] = [];
albumAssets: Set<string> = new Set();
constructor(
options: AssetStoreOptions,
private albumId?: string,
) {
constructor(options: AssetStoreOptions, private albumId?: string) {
this.options = { ...options, size: TimeBucketSize.Month };
this.store$.set(this);
}