Skip to content

Commit

Permalink
fix(fonts): updates roboto path to be capitalized
Browse files Browse the repository at this point in the history
  • Loading branch information
slhay28 committed Jun 28, 2024
1 parent 180d2f6 commit af73c28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/shared/AppCoreExtensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export default class AppCoreExtension extends CoreExtension {
descriptors: {
weight: 700
},
atlasDataUrl: basePath + 'fonts/roboto/roboto-Bold.msdf.json',
atlasUrl: basePath + 'fonts/roboto/roboto-Bold.msdf.png',
atlasDataUrl: basePath + 'fonts/roboto/Roboto-Bold.msdf.json',
atlasUrl: basePath + 'fonts/roboto/Roboto-Bold.msdf.png',
stage
})
);
Expand All @@ -52,8 +52,8 @@ export default class AppCoreExtension extends CoreExtension {
descriptors: {
weight: 400
},
atlasDataUrl: basePath + 'fonts/roboto/roboto-Regular.msdf.json',
atlasUrl: basePath + 'fonts/roboto/roboto-Regular.msdf.png',
atlasDataUrl: basePath + 'fonts/roboto/Roboto-Regular.msdf.json',
atlasUrl: basePath + 'fonts/roboto/Roboto-Regular.msdf.png',
stage
})
);
Expand All @@ -64,8 +64,8 @@ export default class AppCoreExtension extends CoreExtension {
descriptors: {
weight: 500
},
atlasDataUrl: basePath + 'fonts/roboto/roboto-Regular.msdf.json',
atlasUrl: basePath + 'fonts/roboto/roboto-Regular.msdf.png',
atlasDataUrl: basePath + 'fonts/roboto/Roboto-Regular.msdf.json',
atlasUrl: basePath + 'fonts/roboto/Roboto-Regular.msdf.png',
stage
})
);
Expand Down

0 comments on commit af73c28

Please sign in to comment.