format fix

This commit is contained in:
Alex Tran
2023-11-28 23:18:11 -06:00
parent f011c77cdd
commit df5bb3ce7b
5 changed files with 15 additions and 8 deletions
+4 -1
View File
@@ -73,7 +73,10 @@ 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);
}