Skip to content

Commit

Permalink
Reverted StoreFS.metadata().name change
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed May 29, 2024
1 parent 4de2dd0 commit 1be18c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/store/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class StoreFS<T extends Store = Store> extends FileSystem {
public metadata(): FileSystemMetadata {
return {
...super.metadata(),
name: 'storefs:' + this.store.name,
name: this.store.name,
};
}

Expand Down

0 comments on commit 1be18c1

Please sign in to comment.