Skip to content
Merged
Show file tree
Hide file tree
Changes from 27 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
52363ce
Missing assign members section on checkpoint reviewer setup (https://…
jmgasper Feb 6, 2026
7655a19
Show assignment of checkpoint reviewers on edit challenge page
jmgasper Feb 6, 2026
d44d9ba
v6 project API updates
jmgasper Feb 9, 2026
4105e35
Revert this change to not break dev environment
jmgasper Feb 9, 2026
2618327
Turn this down to avoid timeouts
jmgasper Feb 9, 2026
70fa065
Fix projects API route from local back to something that works.
jmgasper Feb 10, 2026
cc50fab
Change chunk size to avoid timeouts
jmgasper Feb 10, 2026
9263eb6
Change chunk size to avoid timeouts
jmgasper Feb 10, 2026
bcbcc8e
PM-3786 #time 5h Base service for calling workflow api
vas3a Feb 11, 2026
4638c97
PM-3786 #time 2h FE integration for ai-suggested skills for the skill…
vas3a Feb 11, 2026
ca3b234
Engagements updates for v2
jmgasper Feb 11, 2026
2989706
Further v2 engagement updates
jmgasper Feb 11, 2026
5aa2478
Checkbox alignment
jmgasper Feb 11, 2026
7d1d959
Merge branch 'develop' into chunk_size
jmgasper Feb 11, 2026
3d337d5
Merge pull request #1726 from topcoder-platform/chunk_size
jmgasper Feb 11, 2026
281a998
Build fix
jmgasper Feb 11, 2026
9613ac3
Build fix
jmgasper Feb 11, 2026
928a24d
Build fix
jmgasper Feb 11, 2026
ee9a63b
Build fix
jmgasper Feb 11, 2026
198c4dd
V2 engagement tweaks https://topcoder.atlassian.net/browse/PM-3699
jmgasper Feb 11, 2026
3a051ff
Further alignment tweak
jmgasper Feb 12, 2026
fd0ecba
Merge pull request #1725 from topcoder-platform/PM-3786_ai-assisted-s…
vas3a Feb 12, 2026
6feee77
PM-3786 #time 30min build & lint fixes
vas3a Feb 12, 2026
c091375
Merge pull request #1727 from topcoder-platform/PM-3786_ai-assisted-s…
vas3a Feb 12, 2026
052e0d5
PM-3485 #time 2h fixed columns and data mismatch in resources tab
hentrymartin Feb 12, 2026
c3a74f4
Update gitignore
jmgasper Feb 12, 2026
500e9b1
QA and requested tweaks
jmgasper Feb 12, 2026
aa60cbf
Add some prompts to the dropdowns to tell them apart
jmgasper Feb 12, 2026
cddfaf1
Merge pull request #1729 from topcoder-platform/pm-3485
hentrymartin Feb 13, 2026
015a292
clean up dist
kkartunov Feb 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ parameters:

defaults: &defaults
docker:
- image: cimg/python:3.11.11-browsers
- image: cimg/python:3.12.12-browsers
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
Upgrading the Python image from 3.11.11 to 3.12.12 may introduce compatibility issues with existing code or dependencies. Ensure that all dependencies and code are compatible with Python 3.12.12 and that thorough testing is conducted to verify this change.


test_defaults: &test_defaults
docker:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ node_modules

# production
/build
/dist

# misc
.DS_Store
Expand Down
2 changes: 2 additions & 0 deletions config/constants/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ module.exports = {
ENGAGEMENTS_ROOT_API_URL: `${DEV_API_HOSTNAME}/v6/engagements`,
APPLICATIONS_API_URL: `${DEV_API_HOSTNAME}/v6/engagements/applications`,
TC_FINANCE_API_URL: process.env.TC_FINANCE_API_URL || `${API_V6}/finance`,
TC_AI_API_BASE_URL: process.env.TC_AI_API_BASE_URL || `${API_V6}/ai`,
TC_AI_SKILLS_EXTRACTION_WORKFLOW_ID: process.env.TC_AI_SKILLS_EXTRACTION_WORKFLOW_ID || 'skillExtractionWorkflow',
CHALLENGE_DEFAULT_REVIEWERS_URL: `${DEV_API_HOSTNAME}/v6/challenge/default-reviewers`,
CHALLENGE_API_VERSION: '1.1.0',
CHALLENGE_TIMELINE_TEMPLATES_URL: `${DEV_API_HOSTNAME}/v6/timeline-templates`,
Expand Down
2 changes: 2 additions & 0 deletions config/constants/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ module.exports = {
ENGAGEMENTS_ROOT_API_URL: `${PROD_API_HOSTNAME}/v6/engagements`,
APPLICATIONS_API_URL: `${PROD_API_HOSTNAME}/v6/engagements/applications`,
TC_FINANCE_API_URL: process.env.TC_FINANCE_API_URL || `${API_V6}/finance`,
TC_AI_API_BASE_URL: process.env.TC_AI_API_BASE_URL || `${API_V6}/ai`,
TC_AI_SKILLS_EXTRACTION_WORKFLOW_ID: process.env.TC_AI_SKILLS_EXTRACTION_WORKFLOW_ID || 'skillExtractionWorkflow',
CHALLENGE_DEFAULT_REVIEWERS_URL: `${PROD_API_HOSTNAME}/v6/challenge/default-reviewers`,
CHALLENGE_API_VERSION: '1.1.0',
CHALLENGE_TIMELINE_TEMPLATES_URL: `${PROD_API_HOSTNAME}/v6/timeline-templates`,
Expand Down
10 changes: 1 addition & 9 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ module.exports = function (webpackEnv) {
const isEnvDevelopment = webpackEnv === 'development'
const isEnvProduction = webpackEnv === 'production'
const WM_DEBUG = /^(1|true|on|yes)$/i.test(String(process.env.WM_DEBUG || ''))
const reactDevUtilsContextRegExp = /[\\/]react-dev-utils[\\/]/

// Webpack uses `publicPath` to determine where the app is being served from.
// It requires a trailing slash, or the file assets will get an incorrect path.
Expand Down Expand Up @@ -150,7 +149,7 @@ module.exports = function (webpackEnv) {
// require.resolve('webpack-dev-server/client') + '?/',
// require.resolve('webpack/hot/dev-server'),
isEnvDevelopment &&
require.resolve('react-dev-utils/webpackHotDevClient'),
path.resolve(__dirname, 'webpackHotDevClient'),
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
The change from require.resolve('react-dev-utils/webpackHotDevClient') to path.resolve(__dirname, 'webpackHotDevClient') could lead to potential issues if the webpackHotDevClient file is not present in the expected directory. Ensure that this file is correctly located and that any differences in behavior between the resolved module and the local file are intentional.

// Finally, this is your app's code:
paths.appIndexJs
// We include the app code last so that if there is a runtime error during
Expand Down Expand Up @@ -485,13 +484,6 @@ module.exports = function (webpackEnv) {
// This gives some necessary context to module not found errors, such as
// the requesting resource.
new ModuleNotFoundPlugin(paths.appPath),
// Ensure the dev client tolerates webpack 5 warning/error objects.
isEnvDevelopment &&
new webpack.NormalModuleReplacementPlugin(/\.\/formatWebpackMessages$/, (resource) => {
if (reactDevUtilsContextRegExp.test(resource.context || '')) {
resource.request = path.resolve(__dirname, 'formatWebpackMessages')
}
}),
// (DefinePlugin already added above with merged env)
// This is necessary to emit hot updates (currently CSS only):
isEnvDevelopment && new webpack.HotModuleReplacementPlugin(),
Expand Down
18 changes: 18 additions & 0 deletions config/webpackHotDevClient.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'use strict'

var patchedFormatWebpackMessages = require('./formatWebpackMessages')
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 maintainability]
Consider using const instead of var for patchedFormatWebpackMessages to prevent accidental reassignment and improve code clarity.

var originalFormatWebpackMessages = require('react-dev-utils/formatWebpackMessages')
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 maintainability]
Consider using const instead of var for originalFormatWebpackMessages to prevent accidental reassignment and improve code clarity.


// webpackHotDevClient requires react-dev-utils/formatWebpackMessages internally.
// Replace that cached module export before loading the hot client so warnings
// and errors can be normalized for webpack 5 object payloads.
if (typeof __webpack_require__ === 'function' && __webpack_require__.c) {
Object.keys(__webpack_require__.c).forEach(function(id) {
var cachedModule = __webpack_require__.c[id]
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 maintainability]
Consider using const instead of var for cachedModule since it is not reassigned within the loop, which can help with readability and prevent potential errors.

if (cachedModule && cachedModule.exports === originalFormatWebpackMessages) {
cachedModule.exports = patchedFormatWebpackMessages
}
})
}

require('react-dev-utils/webpackHotDevClient')
1 change: 1 addition & 0 deletions dist/0034ba52190104db.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-mediumitalic.858297dd.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it can prevent potential issues with certain tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/01d795901925ac85.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-black.b50448a2.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
The use of __webpack_public_path__ assumes that it is correctly set up in the webpack configuration. Ensure that this variable is properly configured to avoid potential issues with incorrect asset paths, especially in production environments.

1 change: 1 addition & 0 deletions dist/0320b58058010e14.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-italic.259fcdcb.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can help avoid potential issues with certain tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/1094703e992b5952.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-lightitalic.727154b1.eot";
1 change: 1 addition & 0 deletions dist/15cf9876a6b5a505.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/2661ea491a11fac1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/27353ce291054427.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-blackitalic.7f411651.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
The use of __webpack_public_path__ assumes that it is set correctly at runtime. Ensure that this variable is properly configured in all environments where this code will run to avoid potential issues with incorrect asset paths.

1 change: 1 addition & 0 deletions dist/27806b34ffd7f562.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-light.6e0ff940.woff";
1 change: 1 addition & 0 deletions dist/286fcd6c8e8b607a.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-blackitalic.b397a4ee.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can help prevent potential issues with certain tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/28dfb67bcf8950e1.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-black.4ccbfa3e.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a functional issue, it is a common convention that can help prevent potential issues with some tools and version control systems.

1 change: 1 addition & 0 deletions dist/2a90745226a10fc5.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/39d9e50ecba024bf.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-bolditalic.2dcbd7b5.woff";
1 change: 1 addition & 0 deletions dist/3b4cdc7b4fe7022e.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-bold.5f2071a3.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a functional issue, it is a common convention that can help avoid potential issues with certain tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/4ab1ac0815334d51.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-lightitalic.61ee9cf8.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While not technically incorrect, having a newline at the end of files is a common convention that can prevent issues with some tools and version control systems.

1 change: 1 addition & 0 deletions dist/4d03dc27520e98fb.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/54b596bd94a9007e.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-bold.2e3d794b.woff";
1 change: 1 addition & 0 deletions dist/5a1d946ed2981ed7.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-regular.90564028.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ correctness]
The use of __webpack_public_path__ assumes that it is correctly set elsewhere in the application. Ensure that this variable is properly configured to avoid potential issues with incorrect asset paths.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file to adhere to POSIX standards, which can help prevent potential issues with some tools and version control systems.

1 change: 1 addition & 0 deletions dist/5c3acedfe9c06fb9.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-italic.849ab00e.woff";
1 change: 1 addition & 0 deletions dist/5ce4debd223293b2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/6035cd131c52b594.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/638ca27a927dd250.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-lightitalic.def6baf9.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
The use of __webpack_public_path__ assumes that it is correctly set elsewhere in the application. Ensure that this variable is properly configured to avoid incorrect asset paths, which could lead to broken links or missing resources.

1 change: 1 addition & 0 deletions dist/658ece7f6cc379aa.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thinitalic.6fd7eb70.eot";
1 change: 1 addition & 0 deletions dist/69b0aeaf643d8c3a.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-black.dcd4a715.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While not technically incorrect, having a newline at the end of files is a common convention that can prevent potential issues with some tools and version control systems.

1 change: 1 addition & 0 deletions dist/703aa1fe3817f76e.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thinitalic.e15bab0c.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can help prevent potential issues with some tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/77b5284f636f7e52.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thinitalic.97aaa146.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[❗❗ correctness]
The use of __webpack_public_path__ assumes that it is correctly set up elsewhere in the build configuration. Ensure that this variable is properly configured to avoid potential issues with asset loading paths, especially in production environments.

1 change: 1 addition & 0 deletions dist/79cc73608d180e39.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/8087473917dac340.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-regular.447f07f0.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file to comply with POSIX standards, which can help prevent issues with certain tools and version control systems.

1 change: 1 addition & 0 deletions dist/835253066e6ee1f0.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-medium.ad11054c.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can prevent potential issues with some tools or when concatenating files.

1 change: 1 addition & 0 deletions dist/886b167e91de04a0.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/8b57e935ef711c67.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-light.2575b27e.ttf";
1 change: 1 addition & 0 deletions dist/947f254504d00fd1.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thin.32e4d956.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can help avoid unnecessary diffs in version control systems when further lines are added.

1 change: 1 addition & 0 deletions dist/976489525ddbc1ce.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-blackitalic.9fce9ccc.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ maintainability]
Consider using path.join from the Node.js path module to construct file paths. This approach can improve cross-platform compatibility by ensuring the correct path separators are used.

1 change: 1 addition & 0 deletions dist/9ff19a4f2cee2a22.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-bolditalic.aa10b644.eot";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
The lack of a newline at the end of the file can cause issues with some tools that process files line by line. Consider adding a newline to improve compatibility and maintainability.

1 change: 1 addition & 0 deletions dist/a103d3afb23be6d5.woff
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thin.391f6caa.woff";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[💡 style]
Consider adding a newline at the end of the file. While this is not a correctness issue, it is a common convention that can help prevent issues with some tools and version control systems.

1 change: 1 addition & 0 deletions dist/aabeb670b908bccb.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-italic.4f6e1a6f.ttf";
1 change: 1 addition & 0 deletions dist/abc5cfe368aa5833.eot
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-thin.ddc05a8d.eot";
1 change: 1 addition & 0 deletions dist/abe50b9e8f8dd1b9.ttf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = __webpack_public_path__ + "static/media/roboto-mediumitalic.3eef81d5.ttf";
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[⚠️ correctness]
The use of __webpack_public_path__ assumes that it is correctly set at runtime. Ensure that this variable is properly configured in all environments where this code will run to avoid potential path resolution issues.

1 change: 1 addition & 0 deletions dist/ad4d04a37af8ada3.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading