We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc08804 commit 4a3279dCopy full SHA for 4a3279d
src/core/brand/brand.ts
@@ -158,12 +158,12 @@ export class Brand {
158
if (v) {
159
logo[size] = v;
160
}
161
- for (const [key, value] of Object.entries(data.logo?.images ?? {})) {
162
- if (typeof value === "string") {
163
- logo.images[key] = { path: value };
164
- } else {
165
- logo.images[key] = value;
166
- }
+ }
+ for (const [key, value] of Object.entries(data.logo?.images ?? {})) {
+ if (typeof value === "string") {
+ logo.images[key] = { path: value };
+ } else {
+ logo.images[key] = value;
167
168
169
0 commit comments