Fixed the output of the "path" computed property for the AssetPrefix enumeration in the library target.

This commit is contained in:
2025-03-08 12:26:11 +01:00
parent 39a9523ac9
commit 5b379fbc86
3 changed files with 15 additions and 13 deletions
@@ -25,7 +25,7 @@ extension AssetPrefix: Pathable {
// MARK: Computed
var path: String {
.init(format: .Format.Path.root, rawValue)
.init(format: .Format.Path.folder, rawValue)
}
}